diff --git a/ChangeLog b/ChangeLog index b08470f48c..8e2c599b62 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Sat Feb 13 17:07:20 2010 Yukihiro Matsumoto + + * array.c (rb_ary_delete): RDoc update. a patch from Hugh Sasse. + [ruby-core:28128] + + * array.c (rb_ary_compact_bang): ditto. + Sat Feb 13 15:01:24 2010 Yukihiro Matsumoto * marshal.c (id2encidx): duplicated entry for encoding name. diff --git a/array.c b/array.c index 2b147c3ffd..a6c03e9248 100644 --- a/array.c +++ b/array.c @@ -2253,10 +2253,12 @@ rb_ary_select(VALUE ary) * array.delete(obj) -> obj or nil * array.delete(obj) { block } -> obj or nil * - * Deletes items from self that are equal to obj. If + * Deletes items from self that are equal to obj. + * If any items are found, returns obj. If * the item is not found, returns nil. If the optional * code block is given, returns the result of block if the item - * is not found. + * is not found. (To remove nil elements and + * get an informative return value, use #compact!) * * a = [ "a", "b", "b", "b", "c" ] * a.delete("b") #=> "b" @@ -3384,7 +3386,8 @@ rb_ary_uniq(VALUE ary) * array.compact! -> array or nil * * Removes +nil+ elements from array. - * Returns +nil+ if no changes were made. + * Returns +nil+ if no changes were made, otherwise return + * array. * * [ "a", nil, "b", nil, "c" ].compact! #=> [ "a", "b", "c" ] * [ "a", "b", "c" ].compact! #=> nil