ruby-changes:63112
From: BurdetteLamar <ko1@a...>
Date: Fri, 25 Sep 2020 17:29:03 +0900 (JST)
Subject: [ruby-changes:63112] de0e0ffad4 (master): [flori/json] Nodoc for recurse_proc
https://git.ruby-lang.org/ruby.git/commit/?id=de0e0ffad4 From de0e0ffad4e0cf0360efbff2e0e8988f9aa0727a Mon Sep 17 00:00:00 2001 From: BurdetteLamar <burdettelamar@y...> Date: Wed, 29 Jul 2020 14:46:13 -0500 Subject: [flori/json] Nodoc for recurse_proc https://github.com/flori/json/commit/f8c0fe2408 diff --git a/ext/json/lib/json/common.rb b/ext/json/lib/json/common.rb index 8914a74..f6230a7 100644 --- a/ext/json/lib/json/common.rb +++ b/ext/json/lib/json/common.rb @@ -561,7 +561,7 @@ module JSON https://github.com/ruby/ruby/blob/trunk/ext/json/lib/json/common.rb#L561 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 } -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/