Skip to content

Commit 9f84260

Browse files
committed
doc: fix syntax error in Guessing Game
1 parent 9560754 commit 9f84260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/guessing-game.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ fn main() {
843843
Ordering::Less => println!("Too small!"),
844844
Ordering::Greater => println!("Too big!"),
845845
Ordering::Equal => {
846-
println!("You win!"),
846+
println!("You win!");
847847
break;
848848
}
849849
}

0 commit comments

Comments
 (0)