summaryrefslogtreecommitdiffstats
path: root/enum.c
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-15 01:24:40 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-15 01:24:40 +0000
commitca98a8d6c53d6402df1eea0342b9c5fe5253d392 (patch)
treeff80e1bbc24a9e255c5532c5a9e6d28df6ed5e6b /enum.c
parent2c513f988d8f65577cdf6a6f78215d14a6854953 (diff)
downloadruby-ca98a8d6c53d6402df1eea0342b9c5fe5253d392.tar.gz
ruby-ca98a8d6c53d6402df1eea0342b9c5fe5253d392.tar.xz
ruby-ca98a8d6c53d6402df1eea0342b9c5fe5253d392.zip
Documentation typo
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10269 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 a50de77a9..2a29272ae 100644
--- a/enum.c
+++ b/enum.c
@@ -578,7 +578,7 @@ any_i(i, memo)
*
* Passes each element of the collection to the given block. The method
* returns <code>true</code> if the block ever returns a value other
- * that <code>false</code> or <code>nil</code>. If the block is not
+ * than <code>false</code> or <code>nil</code>. If the block is not
* given, Ruby adds an implicit block of <code>{|obj| obj}</code> (that
* is <code>any?</code> will return <code>true</code> if at least one
* of the collection members is not <code>false</code> or