diff options
author | BurdetteLamar <burdettelamar@yahoo.com> | 2020-07-29 14:46:13 -0500 |
---|---|---|
committer | BurdetteLamar <burdettelamar@yahoo.com> | 2020-07-29 14:46:13 -0500 |
commit | f8c0fe24083dd6cc8e4b1fc61b06681b35024193 (patch) | |
tree | 4ddb483e58cf5ef047c03d856519f80fc4452f87 | |
parent | 1a6123828f74ccdcde814f30de14f0fa8056db1e (diff) | |
download | json-f8c0fe24083dd6cc8e4b1fc61b06681b35024193.tar.gz |
Nodoc for recurse_proc
-rw-r--r-- | lib/json/common.rb | 2 |
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 } |