summaryrefslogtreecommitdiff
path: root/lib/mathn.rb
diff options
context:
space:
mode:
authorstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-28 10:41:03 +0000
committerstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-28 10:41:03 +0000
commit98374b99dd69eeb8f74272e26aaf7bba8836bd6d (patch)
tree19787ff753eb363672d44a442a0e43835e85e964 /lib/mathn.rb
parenta0da6f0dfe85a44e1af6073f74405cf47c3d152c (diff)
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
Diffstat (limited to 'lib/mathn.rb')
-rw-r--r--lib/mathn.rb2
1 files changed, 1 insertions, 1 deletions
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)