Skip to content

Commit 5926940

Browse files
authored
docs(variables): wrap mut keyword with backtick
1 parent b21a4ac commit 5926940

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)