Skip to content

Commit

Permalink
Rollup merge of #25173 - andreastt:guessing_game_syntax_fix, r=stevek…
Browse files Browse the repository at this point in the history
…labnik
  • Loading branch information
steveklabnik committed May 7, 2015
2 parents 0084ba9 + 9f84260 commit 5ac5203
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 @@ -848,7 +848,7 @@ fn main() {
Ordering::Less => println!("Too small!"),
Ordering::Greater => println!("Too big!"),
Ordering::Equal => {
println!("You win!"),
println!("You win!");
break;
}
}
Expand Down

0 comments on commit 5ac5203

Please sign in to comment.