Remove double punctuation

Even though it makes the code not exactly match what we entered,
completely
This commit is contained in:
Carol (Nichols || Goulding)
2018-12-31 15:26:06 -05:00
parent 7ccf60ad3b
commit 25084ef930

View File

@@ -679,7 +679,7 @@ Could not compile `guessing_game`.
The core of the error states that there are *mismatched types*. Rust has a
strong, static type system. However, it also has type inference. When we wrote
`let mut guess = String::new();`, Rust was able to infer that `guess` should be
`let mut guess = String::new()`, Rust was able to infer that `guess` should be
a `String` and didnt make us write the type. The `secret_number`, on the other
hand, is a number type. A few number types can have a value between 1 and 100:
`i32`, a 32-bit number; `u32`, an unsigned 32-bit number; `i64`, a 64-bit