aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-29 13:50:59 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-29 13:50:59 +0000
commit764980b32dcf5899e399ef7a0686818f29e02ac8 (patch)
tree226328739becf1b8f96cc53454ded9f844abcfea
parentf3589dd1fda63b69a7765634cba33e13ca52d615 (diff)
downloadruby-764980b32dcf5899e399ef7a0686818f29e02ac8.tar.gz
Fix a typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@16685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index bcdd29abf1..26df6c881c 100644
--- a/array.c
+++ b/array.c
@@ -3068,7 +3068,7 @@ rb_ary_nitems(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