Skip to content

Commit

Permalink
* enumerator.c: Remove "enumeration sequenced by".
Browse files Browse the repository at this point in the history
	  [Ruby 1.9 - Bug ruby#4757]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
drbrain committed Jul 9, 2011
1 parent 0c3833e commit d137810
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Sat Jul 9 09:25:06 2011 Eric Hodel <drbrain@segment7.net>

* enumerator.c: Remove "enumeration sequenced by".
[Ruby 1.9 - Bug #4757]

Sat Jul 9 09:14:56 2011 Eric Hodel <drbrain@segment7.net>

* io.c: Note that methods other than IO#gets may increase IO#lineno.
Expand Down
6 changes: 3 additions & 3 deletions enumerator.c
Expand Up @@ -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.
*
*/

Expand Down

0 comments on commit d137810

Please sign in to comment.