summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-26 14:37:09 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-26 14:37:09 +0000
commit710dc1afc0ffe7ec031a54e6794af142a35b773c (patch)
tree3ca78c89f230df74ef6a69c923713dc36a613b84 /array.c
parenta18b03c96c0fd74a1008dde2e730a39bf2783e22 (diff)
* array.c: Fix typo. https://github.com/ruby/ruby/pull/36
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index 84ca90f12f..09c9883b13 100644
--- a/array.c
+++ b/array.c
@@ -3591,7 +3591,7 @@ rb_ary_uniq(VALUE ary)
*
* 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