summaryrefslogtreecommitdiff
path: root/enumerator.c
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-09 00:25:27 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-09 00:25:27 +0000
commitd137810d3a79e42b8ea7a52b04df0d3d1bc03ab9 (patch)
tree64162a1cdd848e67ec76473b6c4b7206fd145f44 /enumerator.c
parent0c3833ec5ab485175edefe78b307af0f2acdd973 (diff)
* enumerator.c: Remove "enumeration sequenced by".
[Ruby 1.9 - Bug #4757] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enumerator.c')
-rw-r--r--enumerator.c6
1 files changed, 3 insertions, 3 deletions
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.
*
*/