aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorJunichi Ito <jit@sonicgarden.jp>2019-11-25 10:16:59 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-11-25 10:46:23 +0900
commita5f0d1d71598451dd8461ba52a3a143cb33afdd3 (patch)
treedfbe538f4c7027b1e3e7a2fd5501a00050733c9a /NEWS
parent9af52c0d099083fb6b56f39584a0909baa9e7a10 (diff)
downloadruby-a5f0d1d71598451dd8461ba52a3a143cb33afdd3.tar.gz
Remove duplicated line in NEWS [ci skip]
[ruby-core:95935] [Misc #16365]
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS1
1 files changed, 0 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index f806fe848c..8804f40d14 100644
--- a/NEWS
+++ b/NEWS
@@ -83,7 +83,6 @@ sufficient information, see the ChangeLog file or Redmine
def foo(h={}, key: 42); end; foo("key" => 43, key: 42) # warned
def foo(h={}, key: 42); end; foo({"key" => 43, key: 42}) # warned
def foo(h={}, key: 42); end; foo({"key" => 43}, key: 42) # OK
- def foo(h={}, key: 42); end; foo({"key" => 43}, key: 42) # OK
* If a method does not accept keywords, and is called with keywords,
the keywords are still treated as a positional hash, with no warning.