summaryrefslogtreecommitdiff
path: root/exercises/variables
diff options
context:
space:
mode:
authorAli Afsharzadeh <afsharzadeh8@gmail.com>2023-03-28 09:58:59 +0330
committerGitHub <noreply@github.com>2023-03-28 09:58:59 +0330
commit592694036f7329b90712ea066f5f79d2396c6f50 (patch)
treee595af54adc671b203e9f2835550eeeaeabb2990 /exercises/variables
parentb21a4ac12b07931f40d2217dedfa4a71fadfbd9b (diff)
docs(variables): wrap mut keyword with backtick
Diffstat (limited to 'exercises/variables')
-rw-r--r--exercises/variables/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/variables/README.md b/exercises/variables/README.md
index 11a7a78..7964ff2 100644
--- a/exercises/variables/README.md
+++ b/exercises/variables/README.md
@@ -2,7 +2,7 @@
In Rust, variables are immutable by default.
When a variable is immutable, once a value is bound to a name, you can’t change that value.
-You can make them mutable by adding mut in front of the variable name.
+You can make them mutable by adding `mut` in front of the variable name.
## Further information