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
Родитель a0ab5a325b
Коммит 77a99fd4d5
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -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.
*/