Skip to content

Commit f6b092a

Browse files
committed
docs/F#StyleGuide: prefer Mutable to 'Scg' [no ci]
1 parent aeaf6f9 commit f6b092a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/FSharpStyleGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ different things).
1717
NOTE: To be able to comply with the rule above, it is important that you do NOT
1818
`open System.Collections.Generics`, otherwise the name `List` will be the mutable
1919
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.
20+
former, use `type MutableList<'T> = System.Collections.Generics.List<'T>` instead.
2121
* To not confuse array types with lists, we prefer to use `List.Empty` over `[]`
2222
(where it's possible; e.g. in match cases it's not possible), and `array<Foo>`
2323
over `Foo []`.

0 commit comments

Comments
 (0)