summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/json/common.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/json/common.rb b/lib/json/common.rb
index 6ed00b3..fc6b7a8 100644
--- a/lib/json/common.rb
+++ b/lib/json/common.rb
@@ -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 }