Skip to content

Commit 92f09db

Browse files
authored
Merge pull request #1445 from guoard/patch-1
docs(variables): wrap mut keyword with backtick
2 parents 4b1fe0a + 5926940 commit 92f09db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/variables/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In Rust, variables are immutable by default.
44
When a variable is immutable, once a value is bound to a name, you can’t change that value.
5-
You can make them mutable by adding mut in front of the variable name.
5+
You can make them mutable by adding `mut` in front of the variable name.
66

77
## Further information
88

0 commit comments

Comments
 (0)