diff options
| author | Ali Afsharzadeh <afsharzadeh8@gmail.com> | 2023-03-28 09:58:59 +0330 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-28 09:58:59 +0330 |
| commit | 592694036f7329b90712ea066f5f79d2396c6f50 (patch) | |
| tree | e595af54adc671b203e9f2835550eeeaeabb2990 /exercises | |
| parent | b21a4ac12b07931f40d2217dedfa4a71fadfbd9b (diff) | |
docs(variables): wrap mut keyword with backtick
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/variables/README.md | 2 |
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 |
