aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 13:05:22 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 13:05:22 +0000
commitc19c8ef4aedadd52b9354188f36aa590ec319200 (patch)
tree4953046be16d307e110e4b916811463b0c854aa1
parent6b6fa21031f91757ff9091788a77a3faa29d4a90 (diff)
downloadruby-c19c8ef4aedadd52b9354188f36aa590ec319200.tar.gz
[DOC]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--bignum.c26
-rw-r--r--numeric.c2
2 files changed, 1 insertions, 27 deletions
diff --git a/bignum.c b/bignum.c
index 3c6a85a984..bb518d1a44 100644
--- a/bignum.c
+++ b/bignum.c
@@ -5350,18 +5350,6 @@ rb_integer_float_eq(VALUE x, VALUE y)
return rb_big_eq(x, y);
}
-/*
- * call-seq:
- * big <=> numeric -> -1, 0, +1 or nil
- *
- * Comparison---Returns -1, 0, or +1 depending on whether +big+ is
- * less than, equal to, or greater than +numeric+. This is the
- * basis for the tests in Comparable.
- *
- * +nil+ is returned if the two values are incomparable.
- *
- */
-
VALUE
rb_big_cmp(VALUE x, VALUE y)
{
@@ -6756,13 +6744,6 @@ rb_big_bit_length(VALUE big)
INTEGER_PACK_LSWORD_FIRST|INTEGER_PACK_NATIVE_BYTE_ORDER);
}
-/*
- * call-seq:
- * big.odd? -> true or false
- *
- * Returns <code>true</code> if <i>big</i> is an odd number.
- */
-
VALUE
rb_big_odd_p(VALUE num)
{
@@ -6772,13 +6753,6 @@ rb_big_odd_p(VALUE num)
return Qfalse;
}
-/*
- * call-seq:
- * big.even? -> true or false
- *
- * Returns <code>true</code> if <i>big</i> is an even number.
- */
-
VALUE
rb_big_even_p(VALUE num)
{
diff --git a/numeric.c b/numeric.c
index 15621ce96c..a357c3af3c 100644
--- a/numeric.c
+++ b/numeric.c
@@ -3809,7 +3809,7 @@ int_equal(VALUE x, VALUE y)
* call-seq:
* int <=> numeric -> -1, 0, +1 or nil
*
- * Comparison---Returns +-1+, +0+, ++1+ or +nil+ depending on whether +fix+ is
+ * Comparison---Returns +-1+, +0+, ++1+ or +nil+ depending on whether +int+ is
* less than, equal to, or greater than +numeric+.
*
* This is the basis for the tests in the Comparable module.