diff --git a/ChangeLog b/ChangeLog index 0fef82a212..b6e32cbe61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jul 9 09:25:06 2011 Eric Hodel + + * enumerator.c: Remove "enumeration sequenced by". + [Ruby 1.9 - Bug #4757] + Sat Jul 9 09:14:56 2011 Eric Hodel * io.c: Note that methods other than IO#gets may increase IO#lineno. diff --git a/enumerator.c b/enumerator.c index a1577ae5b0..8b1add254a 100644 --- a/enumerator.c +++ b/enumerator.c @@ -566,9 +566,9 @@ get_next_values(VALUE obj, struct enumerator *e) * # yield nil [nil] nil * # yield [1, 2] [[1, 2]] [1, 2] * - * Note that enumeration sequenced by +next_values+ does not affect other - * non-external enumeration methods, unless underlying iteration methods - * itself has side-effect, e.g. IO#each_line. + * Note that +next_values+ does not affect other non-external enumeration + * methods unless underlying iteration method itself has side-effect, e.g. + * IO#each_line. * */