Adjusted the heading level of "Block Arguments" [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-12-25 22:05:21 +09:00
parent a01d28fed7
commit aaf0474e76
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -540,7 +540,7 @@ as the keyword arguments:
my_method(a: 1, 'a' => 2) # [{"a"=>2}, 1]
my_method({a: 1, 'a' => 2}) # [{"a"=>2}, 1]
== Block Argument
=== Block Argument
The block argument is indicated by <code>&</code> and must come last: