[DOC] merge documents for {Integer,Fixnum}#succ.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2016-05-01 01:35:43 +00:00
Родитель 215a3894d0
Коммит 396d835d09
1 изменённых файлов: 6 добавлений и 11 удалений

Просмотреть файл

@ -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)
{