Skip to content

Commit

Permalink
doc: Fix remove unused variable
Browse files Browse the repository at this point in the history
This commit depends on rust-lang#25148.
  • Loading branch information
rydotyosh committed May 6, 2015
1 parent 5a83fa2 commit 08923fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/guessing-game.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn main() {
let mut guess = String::new();
let input = io::stdin().read_line(&mut guess)
io::stdin().read_line(&mut guess)
.ok()
.expect("Failed to read line");
Expand Down

0 comments on commit 08923fb

Please sign in to comment.