We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633fe1f commit d649f6eCopy full SHA for d649f6e
content/named-tuples.md
@@ -221,7 +221,7 @@ then `NamedTuple.From[City]` is the named tuple
221
(zip: Int, name: String, population: Int)
222
```
223
The same works for enum cases expanding to case classes, abstract types with case classes as upper bound, alias types expanding to case classes
224
-and singleton type with case classes as underlying type (in terms of the implementation, the `classSymbol` of a type must be a case class.
+and singleton types with case classes as underlying type (in terms of the implementation, the `classSymbol` of a type must be a case class).
225
226
`From` is also defined on named tuples. If `NT` is a named tuple type, then `From[NT] = NT`.
227
0 commit comments