[flori/json] Nodoc for recurse_proc

https://github.com/flori/json/commit/f8c0fe2408
This commit is contained in:
BurdetteLamar 2020-07-29 14:46:13 -05:00 коммит произвёл Hiroshi SHIBATA
Родитель e9096f796c
Коммит de0e0ffad4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -561,7 +561,7 @@ module JSON
end
# Recursively calls passed _Proc_ if the parsed data structure is an _Array_ or _Hash_
def recurse_proc(result, &proc)
def recurse_proc(result, &proc) # :nodoc:
case result
when Array
result.each { |x| recurse_proc x, &proc }