diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-26 06:11:23 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-26 06:11:23 +0000 |
commit | 4e44f6ef8668faa59898de2da7612b6a2cad1eb8 (patch) | |
tree | eb94197597c05bf227a627a9467dc2ea3c14a661 /bignum.c | |
parent | 6c4903ce2ce54535e49b940660e57d6bd12f939f (diff) |
[DOC] replace Fixnum with Integer [ci skip]
* numeric.c: [DOC] update document for Integer class.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r-- | bignum.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5443,8 +5443,8 @@ rb_big_le(VALUE x, VALUE y) * big == obj -> true or false * * Returns <code>true</code> only if <i>obj</i> has the same value - * as <i>big</i>. Contrast this with <code>Bignum#eql?</code>, which - * requires <i>obj</i> to be a <code>Bignum</code>. + * as <i>big</i>. Contrast this with <code>Integer#eql?</code>, which + * requires <i>obj</i> to be a <code>Integer</code>. * * 68719476736 == 68719476736.0 #=> true */ |