From 7c22c80b4306d58cdfca3a158897d94d6e7a3a01 Mon Sep 17 00:00:00 2001 From: GhettoDrank <44539298+GhettoDrank@users.noreply.github.com> Date: Sun, 13 Jan 2019 10:49:10 -0600 Subject: [PATCH] Added period (#30816) --- guide/english/fsharp/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/fsharp/index.md b/guide/english/fsharp/index.md index e65397fe8f..ae406f041c 100644 --- a/guide/english/fsharp/index.md +++ b/guide/english/fsharp/index.md @@ -9,7 +9,7 @@ It is compatible with visual studio and is officialy supported by Microsoft. #### Immutability -Variables in F# are by default immutable. That means that their values can't be changed after initialization. Mutability can be forced by the keyword "mut". One of the F# best practices is to just make a copy of the variable you want and change the values you need at the initialization of the newly created variable +Variables in F# are by default immutable. That means that their values can't be changed after initialization. Mutability can be forced by the keyword "mut". One of the F# best practices is to just make a copy of the variable you want and change the values you need at the initialization of the newly created variable. #### Records