Remove duplicated line in NEWS [ci skip]

[ruby-core:95935] [Misc #16365]
This commit is contained in:
Junichi Ito 2019-11-25 10:16:59 +09:00 committed by Kazuhiro NISHIYAMA
parent 9af52c0d09
commit a5f0d1d715
No known key found for this signature in database
GPG Key ID: 262ED8DBB4222F7A

1
NEWS
View File

@ -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.