Update ch02-00-guessing-game-tutorial.md

Code section was not properly ended. Fixed that section so it ends the code block.
This commit is contained in:
Josh 2016-09-06 10:35:33 -07:00 committed by GitHub
parent 51368ff6df
commit 898024a907

View File

@ -188,6 +188,7 @@ Lets move forward:
```rust,ignore ```rust,ignore
io::stdin().read_line(&mut guess) io::stdin().read_line(&mut guess)
.expect("Failed to read line"); .expect("Failed to read line");
```
We included the input/output functionality from the standard library with use We included the input/output functionality from the standard library with use
std::io; on the first line of the program. We are now calling an associated std::io; on the first line of the program. We are now calling an associated