mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
NEWS: marked up **nil
[ci skip]
This commit is contained in:
parent
d474243e8c
commit
550a6a6bc1
1 changed files with 3 additions and 3 deletions
6
NEWS
6
NEWS
|
@ -66,9 +66,9 @@ sufficient information, see the ChangeLog file or Redmine
|
|||
|
||||
def foo(**kw); p kw; end; foo("str" => 1) #=> {"str"=>1}
|
||||
|
||||
* **nil is allowed in method definitions to explicitly mark that the
|
||||
method accepts no keywords. Calling such a method with keywords will
|
||||
result in an ArgumentError. [Feature #14183]
|
||||
* <code>**nil</code> is allowed in method definitions to explicitly mark
|
||||
that the method accepts no keywords. Calling such a method with keywords
|
||||
will result in an ArgumentError. [Feature #14183]
|
||||
|
||||
def foo(h, **nil); end; foo(key: 1) # ArgumentError
|
||||
def foo(h, **nil); end; foo(**{key: 1}) # ArgumentError
|
||||
|
|
Loading…
Reference in a new issue