File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -602,9 +602,9 @@ function f(x; y=0, kwargs...)
602
602
end
603
603
```
604
604
605
- Inside ` f ` , ` kwargs ` will be a key-value iterator over a named tuple. Named
606
- tuples (as well as dictionaries with keys of ` Symbol ` ) can be passed as keyword
607
- arguments using a semicolon in a call, e.g. ` f(x, z=1; kwargs...) ` .
605
+ Inside ` f ` , ` kwargs ` will be an immutable key-value iterator over a named tuple.
606
+ Named tuples (as well as dictionaries with keys of ` Symbol ` ) can be passed as
607
+ keyword arguments using a semicolon in a call, e.g. ` f(x, z=1; kwargs...) ` .
608
608
609
609
If a keyword argument is not assigned a default value in the method definition,
610
610
then it is * required* : an [ ` UndefKeywordError ` ] ( @ref ) exception will be thrown
You can’t perform that action at this time.
0 commit comments