Skip to content

Commit 6db57a2

Browse files
committed
Rollup merge of rust-lang#25154 - rydotyosh:patch-3, r=steveklabnik
Edit version of rust-lang#25150. This commit depends on rust-lang#25148.
2 parents 414e37f + 08923fb commit 6db57a2

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)