Skip to content

Commit 08923fb

Browse files
committed
doc: Fix remove unused variable
This commit depends on rust-lang#25148.
1 parent 5a83fa2 commit 08923fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/guessing-game.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ fn main() {
8282
8383
let mut guess = String::new();
8484
85-
let input = io::stdin().read_line(&mut guess)
85+
io::stdin().read_line(&mut guess)
8686
.ok()
8787
.expect("Failed to read line");
8888

0 commit comments

Comments
 (0)