summaryrefslogtreecommitdiff
path: root/enum.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-29 12:25:19 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-29 12:25:19 +0000
commit15fd502f5369ad1e9c801287445b39a6316b2fbd (patch)
treefded8b6ea24e43f40aa1dc034ffede32f4396056 /enum.c
parent91b4ac3fb64b6198a2f9919afc09693e52bd20d1 (diff)
merges r29043 from trunk into ruby_1_9_2.
-- * enum.c (enum_inject): fix typo of rdoc. patched by Andrei Kulakov [ruby-core:31768] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@29369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enum.c b/enum.c
index fc8a3c35d2..32c33fb19c 100644
--- a/enum.c
+++ b/enum.c
@@ -527,7 +527,7 @@ inject_op_i(VALUE i, VALUE p, int argc, VALUE *argv)
* operation, specified by a block or a symbol that names a
* method or operator.
*
- * If you specify a block, then for each element in <i>enum<i>
+ * If you specify a block, then for each element in <i>enum</i>
* the block is passed an accumulator value (<i>memo</i>) and the element.
* If you specify a symbol instead, then each element in the collection
* will be passed to the named method of <i>memo</i>.