aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 01:35:43 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 01:35:43 +0000
commit4388577247514060f7ed8b9f05b779cc21a63fe5 (patch)
tree561ae8c7ea100235c9bba7854b070ddc62f30e38 /numeric.c
parent191976ec852cbbed343085ee04610f7069dd2a0f (diff)
downloadruby-4388577247514060f7ed8b9f05b779cc21a63fe5.tar.gz
[DOC] merge documents for {Integer,Fixnum}#succ.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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)
{