1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* numeric.c: Fix rdoc for Fixnum#**

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2013-02-05 05:39:16 +00:00
parent 55f0fa5a7a
commit 075ae2955c

View file

@ -2939,7 +2939,7 @@ int_pow(long x, unsigned long y)
* be negative or fractional.
*
* 2 ** 3 #=> 8
* 2 ** -1 #=> 0.5
* 2 ** -1 #=> (1/2)
* 2 ** 0.5 #=> 1.4142135623731
*/