summaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-26 13:50:40 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-26 13:50:40 +0000
commit081a891a5dfcc7e655111111cc4af745fe355763 (patch)
treec4bdca31ac7327e01acdebe845080c5f1ef7e819 /array.c
parent06b44aad5bdd8ca324f9224cc0edc64227ba1893 (diff)
downloadruby-081a891a5dfcc7e655111111cc4af745fe355763.tar.gz
ruby-081a891a5dfcc7e655111111cc4af745fe355763.tar.xz
ruby-081a891a5dfcc7e655111111cc4af745fe355763.zip
Doug Kearns's doc. patch
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5837 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 4b9321cc0..b309ea044 100644
--- a/array.c
+++ b/array.c
@@ -1636,7 +1636,7 @@ rb_ary_sort(ary)
*
* Invokes <i>block</i> once for each element of <i>self</i>. Creates a
* new array containing the values returned by the block.
- * See also Enumerable#collect</code>.
+ * See also <code>Enumerable#collect</code>.
*
* a = [ "a", "b", "c", "d" ]
* a.collect {|x| x + "!" } #=> ["a!", "b!", "c!", "d!"]