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