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

This commit is contained in:
Nobuyoshi Nakada 2020-12-25 22:05:21 +09:00
Родитель a01d28fed7
Коммит aaf0474e76
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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: