numeric.c: remove mention of Bignum from docs

* numeric.c: [DOC] remove mention of Bignum from Integer#{+,-,*,/},
  the return type does not depend on magnitude anymore.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2017-05-06 07:18:49 +00:00
Родитель f280556f73
Коммит 5e58811bc8
1 изменённых файлов: 8 добавлений и 9 удалений

Просмотреть файл

@ -3466,8 +3466,8 @@ rb_int2str(VALUE x, int base)
* call-seq:
* int + numeric -> numeric_result
*
* Performs addition: the class of the resulting object depends on the class of
* +numeric+ and on the magnitude of the result. It may return a Bignum.
* Performs addition: the class of the resulting object depends on
* the class of +numeric+.
*/
static VALUE
@ -3513,8 +3513,8 @@ rb_int_plus(VALUE x, VALUE y)
* call-seq:
* int - numeric -> numeric_result
*
* Performs subtraction: the class of the resulting object depends on the class
* of +numeric+ and on the magnitude of the result. It may return a Bignum.
* Performs subtraction: the class of the resulting object depends on
* the class of +numeric+.
*/
static VALUE
@ -3557,9 +3557,8 @@ rb_int_minus(VALUE x, VALUE y)
* call-seq:
* int * numeric -> numeric_result
*
* Performs multiplication: the class of the resulting object depends on the
* class of +numeric+ and on the magnitude of the result. It may return a
* Bignum.
* Performs multiplication: the class of the resulting object depends on
* the class of +numeric+.
*/
static VALUE
@ -3660,8 +3659,8 @@ rb_int_fdiv(VALUE x, VALUE y)
* call-seq:
* int / numeric -> numeric_result
*
* Performs division: the class of the resulting object depends on the class of
* +numeric+ and on the magnitude of the result. It may return a Bignum.
* Performs division: the class of the resulting object depends on
* the class of +numeric+.
*/
static VALUE