diff --git a/discussions/d11_rust/README.md b/discussions/d11_rust/README.md index fbcf2e6..a2f4f45 100644 --- a/discussions/d11_rust/README.md +++ b/discussions/d11_rust/README.md @@ -19,7 +19,7 @@ Modern language designed for concurrency; it's similar to C++ and OCaml, but doe * Variables can either be declared as mutable (`mut`) or immutable * Similar to `const` in C - * Mutable means the variable can be reassigned, e.g. `let mut x = 0; x = x + 5;` + * Mutable means the variable can be reassigned or modified, e.g. `let mut x = 0; x = x + 5;` ### Ownership