Merge pull request #3898 from rust-lang/chriskrycho/crab-pincers

Ch. 2: intentionally use `{}` at first
This commit is contained in:
Chris Krycho 2024-04-19 13:48:19 -06:00 committed by GitHub
commit d207d894cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ fn main() {
// ANCHOR_END: expect
// ANCHOR: print_guess
println!("You guessed: {guess}");
println!("You guessed: {}", guess);
// ANCHOR_END: print_guess
}
// ANCHOR: all