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 aeaf6f9 commit f6b092aCopy full SHA for f6b092a
docs/FSharpStyleGuide.md
@@ -17,7 +17,7 @@ different things).
17
NOTE: To be able to comply with the rule above, it is important that you do NOT
18
`open System.Collections.Generics`, otherwise the name `List` will be the mutable
19
list instead of the F#'s immutable one. If you really really need to access the
20
-former, use `type ScgList<'T> = System.Collections.Generics.List<'T>` instead.
+former, use `type MutableList<'T> = System.Collections.Generics.List<'T>` instead.
21
* To not confuse array types with lists, we prefer to use `List.Empty` over `[]`
22
(where it's possible; e.g. in match cases it's not possible), and `array<Foo>`
23
over `Foo []`.
0 commit comments