aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-06 13:53:24 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-06 13:53:24 +0000
commit774f682952d247297568e905588f26f1849f589b (patch)
tree222a47bdf8d1025a21d3821652e7a35aae2fa88b /NEWS
parent9db2bb2a5b820a9d092706cf596e1fae5c429c6f (diff)
downloadruby-774f682952d247297568e905588f26f1849f589b.tar.gz
* enum.c: Enumerable#chunk and Enumerable#slice_before no longer takes
the initial_state argument. [Feature #10958] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index d686e72ac7..4a17ff2cf5 100644
--- a/NEWS
+++ b/NEWS
@@ -25,6 +25,11 @@ with all sufficient information, see the ChangeLog file.
* Array#flatten and Array#flatten! no longer try to call #to_ary
method on elements beyond the given level. [Bug #10748]
+* Enumerable
+ * Enumerable#chunk and Enumerable#slice_before no longer takes the
+ initial_state argument. [Feature #10958]
+ Use a local variable instead to maintain a state.
+
* IO
* IO#close doesn't raise when the IO object is closed. [Feature #10718]