ruby-changes:20625
From: shyouhei <ko1@a...>
Date: Tue, 26 Jul 2011 23:37:20 +0900 (JST)
Subject: [ruby-changes:20625] shyouhei:r32673 (trunk): * array.c: Fix typo. https://github.com/ruby/ruby/pull/36
shyouhei 2011-07-26 23:37:09 +0900 (Tue, 26 Jul 2011) New Revision: 32673 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32673 Log: * array.c: Fix typo. https://github.com/ruby/ruby/pull/36 Modified files: trunk/ChangeLog trunk/array.c Index: array.c =================================================================== --- array.c (revision 32672) +++ array.c (revision 32673) @@ -3591,7 +3591,7 @@ * * Removes +nil+ elements from the array. * Returns +nil+ if no changes were made, otherwise returns - * </i>ary</i>. + * <i>ary</i>. * * [ "a", nil, "b", nil, "c" ].compact! #=> [ "a", "b", "c" ] * [ "a", "b", "c" ].compact! #=> nil Index: ChangeLog =================================================================== --- ChangeLog (revision 32672) +++ ChangeLog (revision 32673) @@ -1,3 +1,7 @@ +Tue Jul 26 23:33:24 2011 Igor Zubkov <igor.zubkov@g...> + + * array.c: Fix typo. https://github.com/ruby/ruby/pull/36 + Mon Jul 25 23:51:01 2011 Yusuke Endoh <mame@t...> * proc.c: pre-allocate the unlinked_method_entry_list_entry struct to -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/