Use consistent apostrophes in markdown files

This commit is contained in:
Peter Neave
2025-02-28 11:46:39 +11:00
parent 3947c4de28
commit 425c9821e0
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# Variables
In Rust, variables are immutable by default.
When a variable is immutable, once a value is bound to a name, you cant change that value.
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.
## Further information