Skip to content

Commit 710dc1a

Browse files
committed
* array.c: Fix typo. ruby#36
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent a18b03c commit 710dc1a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Tue Jul 26 23:33:24 2011 Igor Zubkov <[email protected]>
2+
3+
* array.c: Fix typo. https://github.com/ruby/ruby/pull/36
4+
15
Mon Jul 25 23:51:01 2011 Yusuke Endoh <[email protected]>
26

37
* proc.c: pre-allocate the unlinked_method_entry_list_entry struct to

array.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3591,7 +3591,7 @@ rb_ary_uniq(VALUE ary)
35913591
*
35923592
* Removes +nil+ elements from the array.
35933593
* Returns +nil+ if no changes were made, otherwise returns
3594-
* </i>ary</i>.
3594+
* <i>ary</i>.
35953595
*
35963596
* [ "a", nil, "b", nil, "c" ].compact! #=> [ "a", "b", "c" ]
35973597
* [ "a", "b", "c" ].compact! #=> nil

0 commit comments

Comments
 (0)