diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-20 19:41:29 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-20 19:41:29 +0000 |
commit | 49d8bcc639b3727d8d3db279c95db31d7ca5df88 (patch) | |
tree | 5bfbfd508fc16a0adab1a61f9ced3faaab81dcd3 /enumerator.c | |
parent | cd936d59845e6b8b43ddb0a70f96b7fb317d48c3 (diff) | |
download | ruby-49d8bcc639b3727d8d3db279c95db31d7ca5df88.tar.gz ruby-49d8bcc639b3727d8d3db279c95db31d7ca5df88.tar.xz ruby-49d8bcc639b3727d8d3db279c95db31d7ca5df88.zip |
* enumerator.c (enum_each_cons): typo in RDoc fixed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enumerator.c')
-rw-r--r-- | enumerator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enumerator.c b/enumerator.c index c39a48ef7..c5d9f40f4 100644 --- a/enumerator.c +++ b/enumerator.c @@ -169,7 +169,7 @@ each_cons_i(VALUE val, VALUE *memo) * each_cons(n) * * Iterates the given block for each array of consecutive <n> - * elements. If no block is given, returns an enumerator.a + * elements. If no block is given, returns an enumerator. * * e.g.: * (1..10).each_cons(3) {|a| p a} |