"mean" is redundand

This commit is contained in:
Krasimir Berov 2017-01-07 21:43:20 +01:00
parent 52b7fcbfdd
commit b0fab378c9

View File

@ -6,8 +6,8 @@ advantage of the safety and easy concurrency that Rust offers. However, you
still have the option to make your variables mutable. Lets explore how and why
Rust encourages you to favor immutability, and why you might want to opt out.
When a variable is immutable, that means mean once a value is bound to a name,
you cant change that value. To illustrate, lets generate a new project called
When a variable is immutable, that means once a value is bound to a name, you
cant change that value. To illustrate, lets generate a new project called
*variables* in your *projects* directory by using `cargo new --bin variables`.
Then, in your new *variables* directory, open *src/main.rs* and replace its