From 77a99fd4d5c84aff202a9c9799bb8e074d4e7196 Mon Sep 17 00:00:00 2001 From: kazu Date: Mon, 2 May 2016 11:46:02 +0000 Subject: [PATCH] Update rdoc of Integer#modulo [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/numeric.c b/numeric.c index ed34a0d2ec..4f43a754c7 100644 --- a/numeric.c +++ b/numeric.c @@ -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. */