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

Update rdoc of Integer#modulo [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2016-05-02 11:46:02 +00:00
parent a0ab5a325b
commit 77a99fd4d5

View file

@ -3506,12 +3506,13 @@ rb_int_idiv(VALUE x, VALUE y)
/*
* Document-method: Fixnum#%
* Document-method: Integer#%
* Document-method: Integer#modulo
* call-seq:
* fix % other -> real
* fix.modulo(other) -> real
* int % other -> real
* int.modulo(other) -> real
*
* Returns +fix+ modulo +other+.
* Returns +int+ modulo +other+.
*
* See Numeric#divmod for more information.
*/