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

* array.c (rb_ary_sort_by_bang): RDoc update. [ruby-core:21742]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2009-02-02 12:05:06 +00:00
parent 2654904a1a
commit 092861f37d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Feb 2 21:04:13 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* array.c (rb_ary_sort_by_bang): RDoc update. [ruby-core:21742]
Mon Feb 2 20:49:24 2009 Akinori MUSHA <knu@iDaemons.org>
* enumerator.c: Introduce id_each to save rb_itern() and SYM2ID()

View file

@ -1851,7 +1851,7 @@ sort_by_i(VALUE i)
/*
* call-seq:
* enum.sort_by! {| obj | block } -> array
* array.sort_by! {| obj | block } -> array
*
* Sorts <i>enum</i> in place using a set of keys generated by mapping the
* values in <i>enum</i> through the given block.