From df15754bd7899828ea8d76f7950044966c8efe0c Mon Sep 17 00:00:00 2001 From: stomar Date: Thu, 14 Dec 2017 10:25:57 +0000 Subject: [PATCH] numeric.c: [DOC] grammar fixes git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61233 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/numeric.c b/numeric.c index cd84956632..93098971fe 100644 --- a/numeric.c +++ b/numeric.c @@ -3169,7 +3169,7 @@ int_even_p(VALUE num) * call-seq: * int.allbits?(mask) -> true or false * - * Returns +true+ if all bits of +int+ & +mask+ is 1. + * Returns +true+ if all bits of +int+ & +mask+ are 1. */ static VALUE @@ -3182,7 +3182,7 @@ int_allbits_p(VALUE num, VALUE mask) * call-seq: * int.anybits?(mask) -> true or false * - * Returns +true+ if any bits of +int+ & +mask+ is 1. + * Returns +true+ if any bits of +int+ & +mask+ are 1. */ static VALUE @@ -3195,7 +3195,7 @@ int_anybits_p(VALUE num, VALUE mask) * call-seq: * int.nobits?(mask) -> true or false * - * Returns +true+ if no bits of +int+ & +mask+ is 1. + * Returns +true+ if no bits of +int+ & +mask+ are 1. */ static VALUE