From bb58656b741544f9c9a36c3ccd79722331323723 Mon Sep 17 00:00:00 2001 From: drbrain Date: Thu, 15 Jun 2006 01:15:11 +0000 Subject: [PATCH] Documentation typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10268 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ enum.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c9b3f4aa4b..118f7c301e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Jun 14 18:00:20 2006 Eric Hodel + + * enum.c (enum_any): Documentation typo. + Wed Jun 14 15:01:09 2006 Eric Hodel * lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser#warn): Don't print diff --git a/enum.c b/enum.c index 5fdde385f7..4c7ec67ee8 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 true if the block ever returns a value other - * that false or nil. If the block is not + * than false or nil. If the block is not * given, Ruby adds an implicit block of {|obj| obj} (that * is any? will return true if at least one * of the collection members is not false or