diff --git a/lib/json/common.rb b/lib/json/common.rb index 6ed00b3c..fc6b7a83 100644 --- a/lib/json/common.rb +++ b/lib/json/common.rb @@ -561,7 +561,7 @@ def load(source, proc = nil, options = {}) 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 }