aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/numeric.c b/numeric.c
index a357c3af3c..ed34a0d2ec 100644
--- a/numeric.c
+++ b/numeric.c
@@ -2935,6 +2935,10 @@ int_even_p(VALUE num)
}
/*
+ * Document-method: Integer#succ
+ * Document-method: Integer#next
+ * Document-method: Fixnum#succ
+ * Document-method: Fixnum#next
* call-seq:
* int.next -> integer
* int.succ -> integer
@@ -2943,6 +2947,8 @@ int_even_p(VALUE num)
*
* 1.next #=> 2
* (-1).next #=> 0
+ * 1.succ #=> 2
+ * (-1).succ #=> 0
*/
static VALUE
@@ -2952,17 +2958,6 @@ fix_succ(VALUE num)
return LONG2NUM(i);
}
-/*
- * call-seq:
- * int.next -> integer
- * int.succ -> integer
- *
- * Returns the Integer equal to +int+ + 1, same as Fixnum#next.
- *
- * 1.next #=> 2
- * (-1).next #=> 0
- */
-
VALUE
rb_int_succ(VALUE num)
{