summaryrefslogtreecommitdiffstats
path: root/enum.c
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-15 01:15:11 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-15 01:15:11 +0000
commit31e182ef17329554f9dea3814caea9d56de6761b (patch)
treec3c13140a766490d346a1b284ccf7213f11ab5b9 /enum.c
parent59cb79532b1f79cf992876b2e64d5f4665ae22f6 (diff)
downloadruby-31e182ef17329554f9dea3814caea9d56de6761b.tar.gz
ruby-31e182ef17329554f9dea3814caea9d56de6761b.tar.xz
ruby-31e182ef17329554f9dea3814caea9d56de6761b.zip
Documentation typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10268 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 5fdde385f..4c7ec67ee 100644
--- a/enum.c
+++ b/enum.c
@@ -736,7 +736,7 @@ any_i(VALUE i, VALUE *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