From f8c0fe24083dd6cc8e4b1fc61b06681b35024193 Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Wed, 29 Jul 2020 14:46:13 -0500 Subject: [PATCH] Nodoc for recurse_proc --- lib/json/common.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/json/common.rb b/lib/json/common.rb index 6ed00b3cc..fc6b7a839 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 }