summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-07-31 10:14:51 +0900
committerGitHub <noreply@github.com>2020-07-31 10:14:51 +0900
commite7cf232fa71b3a21094497d18c09ee7f24248bc3 (patch)
tree4ddb483e58cf5ef047c03d856519f80fc4452f87
parent1a6123828f74ccdcde814f30de14f0fa8056db1e (diff)
parentf8c0fe24083dd6cc8e4b1fc61b06681b35024193 (diff)
downloadjson-e7cf232fa71b3a21094497d18c09ee7f24248bc3.tar.gz
Merge pull request #442 from BurdetteLamar/rdoc
Nodoc for recurse_proc
-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 }