ruby-changes:45671
From: stomar <ko1@a...>
Date: Tue, 28 Feb 2017 19:41:11 +0900 (JST)
Subject: [ruby-changes:45671] stomar:r57744 (trunk): lib/mathn.rb: [DOC] nodoc internal Math.rsqrt
stomar 2017-02-28 19:41:03 +0900 (Tue, 28 Feb 2017) New Revision: 57744 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57744 Log: lib/mathn.rb: [DOC] nodoc internal Math.rsqrt Modified files: trunk/lib/mathn.rb Index: lib/mathn.rb =================================================================== --- lib/mathn.rb (revision 57743) +++ lib/mathn.rb (revision 57744) @@ -117,7 +117,7 @@ module Math https://github.com/ruby/ruby/blob/trunk/lib/mathn.rb#L117 # Compute square root of a non negative number. This method is # internally used by +Math.sqrt+. - def rsqrt(a) + def rsqrt(a) # :nodoc: if a.kind_of?(Float) sqrt!(a) elsif a.kind_of?(Rational) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/