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