move Fixnum#/ document position.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54833 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2016-04-30 04:22:27 +00:00
parent 27f9556de9
commit bda463c134

View File

@ -3416,6 +3416,15 @@ int_fdiv(VALUE x, VALUE y)
return Qnil;
}
/*
* Document-method: Fixnum#/
* call-seq:
* fix / 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.
*/
static VALUE
fix_divide(VALUE x, VALUE y, ID op)
{
@ -3450,15 +3459,6 @@ fix_divide(VALUE x, VALUE y, ID op)
}
}
/*
* Document-method: Fixnum#/
* call-seq:
* fix / 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.
*/
static VALUE
fix_div(VALUE x, VALUE y)
{