From 98374b99dd69eeb8f74272e26aaf7bba8836bd6d Mon Sep 17 00:00:00 2001 From: stomar Date: Tue, 28 Feb 2017 10:41:03 +0000 Subject: lib/mathn.rb: [DOC] nodoc internal Math.rsqrt git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/mathn.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mathn.rb b/lib/mathn.rb index 9cb9401e37..f122a98eae 100644 --- a/lib/mathn.rb +++ b/lib/mathn.rb @@ -117,7 +117,7 @@ module Math # 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) -- cgit v1.2.3