diff --git a/docs/_docs/reference/other-new-features/named-tuples.md b/docs/_docs/reference/other-new-features/named-tuples.md index 5483c5cc255b..8b26d62e8ac6 100644 --- a/docs/_docs/reference/other-new-features/named-tuples.md +++ b/docs/_docs/reference/other-new-features/named-tuples.md @@ -43,7 +43,7 @@ val x: (String, Int) = Bob.toTuple // ok ``` `toTuple` is defined as an extension method in the `NamedTuple` object. It returns the given tuple unchanged and simply "forgets" the names. - + Note that conformance rules for named tuples are analogous to the rules for named parameters. One can assign parameters by position to a named parameter list. ```scala def f(param: Int) = ...