* math.c (math_cbrt): [DOC] Fix domain and codomain.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gogotanaka 2015-03-15 11:49:30 +00:00
Родитель 573772ab5b
Коммит ef8537bc9e
1 изменённых файлов: 2 добавлений и 2 удалений

4
math.c
Просмотреть файл

@ -658,9 +658,9 @@ math_sqrt(VALUE obj, VALUE x)
*
* Returns the cube root of +x+.
*
* Domain: [0, INFINITY)
* Domain: (-INFINITY, INFINITY)
*
* Codomain:[0, INFINITY)
* Codomain: (-INFINITY, INFINITY)
*
* -9.upto(9) {|x|
* p [x, Math.cbrt(x), Math.cbrt(x)**3]