diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-29 13:50:59 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-29 13:50:59 +0000 |
commit | 14f54b97c75d4ac9355fef82b7e749a7aa632e47 (patch) | |
tree | f0be03bd459856f91ffb5f84558e9e50190367c2 /array.c | |
parent | 59aff7a56a514b7bad91ec675e89630b96d9d833 (diff) | |
download | ruby-14f54b97c75d4ac9355fef82b7e749a7aa632e47.tar.gz ruby-14f54b97c75d4ac9355fef82b7e749a7aa632e47.tar.xz ruby-14f54b97c75d4ac9355fef82b7e749a7aa632e47.zip |
Fix a typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2751,7 +2751,7 @@ rb_ary_compact(VALUE ary) * array.count { |item| block } -> int * * Returns the number of elements which equals to <i>obj</i>. - * If a block is given, counts tthe number of elements yielding a true value. + * If a block is given, counts the number of elements yielding a true value. * * ary = [1, 2, 4, 2] * ary.count(2) # => 2 |