1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix doc for Numeric#coerce [ci skip]

* numeric.c (num_coerce): [DOC] fix doc for Numeric#coerce,
  missing '+'.  [Fix GH-974]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51334 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-07-22 00:45:33 +00:00
parent 26be081f1b
commit 545086d2c7
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Jul 22 09:45:31 2015 Maksim Sitnikov <sitnikovme@undev.ru>
* numeric.c (num_coerce): [DOC] fix doc for Numeric#coerce,
missing '+'. [Fix GH-974]
Wed Jul 22 07:24:18 2015 Koichi Sasada <ko1@atdot.net>
* make rb_iseq_t T_IMEMO object (type is imemo_iseq).

View file

@ -215,7 +215,7 @@ rb_num_negative_p(VALUE num)
* call-seq:
* num.coerce(numeric) -> array
*
* If a +numeric is the same type as +num+, returns an array containing
* If a +numeric+ is the same type as +num+, returns an array containing
* +numeric+ and +num+. Otherwise, returns an array with both a +numeric+ and
* +num+ represented as Float objects.
*