Skip to content

Commit 5ac5203

Browse files
committed
Rollup merge of #25173 - andreastt:guessing_game_syntax_fix, r=steveklabnik
2 parents 0084ba9 + 9f84260 commit 5ac5203

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
@@ -848,7 +848,7 @@ fn main() {
848848
Ordering::Less => println!("Too small!"),
849849
Ordering::Greater => println!("Too big!"),
850850
Ordering::Equal => {
851-
println!("You win!"),
851+
println!("You win!");
852852
break;
853853
}
854854
}

0 commit comments

Comments
 (0)