Skip to content

Commit 88f7b80

Browse files
tirkarthicartermp
authored andcommitted
Fix <- in markdown (#1159)
1 parent 2237820 commit 88f7b80

File tree

1 file changed

+2
-2
lines changed
  • docs/fsharp/language-reference/values

1 file changed

+2
-2
lines changed

docs/fsharp/language-reference/values/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ F# is not a pure functional language, yet it fully supports functional programmi
3535
## Mutable Variables
3636
You can use the keyword `mutable` to specify a variable that can be changed. Mutable variables in F# should generally have a limited scope, either as a field of a type or as a local value. Mutable variables with a limited scope are easier to control and are less likely to be modified in incorrect ways.
3737

38-
You can assign an initial value to a mutable variable by using the `let` keyword in the same way as you would define a value. However, the difference is that you can subsequently assign new values to mutable variables by using the `&lt;-` operator, as in the following example.
38+
You can assign an initial value to a mutable variable by using the `let` keyword in the same way as you would define a value. However, the difference is that you can subsequently assign new values to mutable variables by using the `<-` operator, as in the following example.
3939

4040
[!code-fsharp[Main](../../../../samples/snippets/fsharp/lang-ref-1/snippet602.fs)]
4141

@@ -50,4 +50,4 @@ You can assign an initial value to a mutable variable by using the `let` keyword
5050
## See Also
5151
[Null Values](null-Values.md)
5252

53-
[F# Language Reference](../index.md)
53+
[F# Language Reference](../index.md)

0 commit comments

Comments
 (0)