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

numeric.c: [DOC] grammar fixes

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61233 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2017-12-14 10:25:57 +00:00
parent 4a8aa278b5
commit df15754bd7

View file

@ -3169,7 +3169,7 @@ int_even_p(VALUE num)
* call-seq:
* int.allbits?(mask) -> true or false
*
* Returns +true+ if all bits of <code>+int+ & +mask+</code> is 1.
* Returns +true+ if all bits of <code>+int+ & +mask+</code> 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 <code>+int+ & +mask+</code> is 1.
* Returns +true+ if any bits of <code>+int+ & +mask+</code> 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 <code>+int+ & +mask+</code> is 1.
* Returns +true+ if no bits of <code>+int+ & +mask+</code> are 1.
*/
static VALUE