aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 183433eb92..73be13e4bc 100644
--- a/NEWS
+++ b/NEWS
@@ -86,10 +86,10 @@ sufficient information, see the ChangeLog file or Redmine
h = {}; def foo(*a) a end; foo(h) # [{}]
h = {}; def foo(a) a end; foo(h) # {}
-* Proc.new and proc with no block in a method called with a block is warned
- now.
+* Proc.new and Kernel#proc with no block in a method called with a block is
+ warned now.
-* lambda with no block in a method called with a block errs.
+* Kernel#lambda with no block in a method called with a block errs.
* Non-Symbol keys in a keyword arguments hash were prohibited in 2.6.0,
but are now allowed again. [Bug #15658]