From f45ac5c72bec174bc83fcc39d8020db25529b672 Mon Sep 17 00:00:00 2001 From: naruse Date: Sat, 10 Dec 2016 18:23:33 +0000 Subject: Add missing :nodoc: comment We were missing a `:nodoc:` magic comment that was making automated tools show that this method was missing documentation, when it really didn't need to be documented. by Devon Estes https://github.com/ruby/ruby/pull/1482 fix GH-1482 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/pp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pp.rb b/lib/pp.rb index aa2b67a420..e19edef0ee 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -417,8 +417,8 @@ class Range # :nodoc: end end -class String - def pretty_print(q) +class String # :nodoc: + def pretty_print(q) # :nodoc: lines = self.lines if lines.size > 1 q.group(0, '', '') do -- cgit v1.2.3