Skip to content

Commit

Permalink
Rollup merge of rust-lang#89009 - tatami4:master, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Fix typo in `break` docs
  • Loading branch information
Manishearth authored Sep 16, 2021
2 parents 84d384c + a452d02 commit d9fa356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/keyword_docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ mod as_keyword {}
/// '_inner: for j in 1..=200 {
/// println!(" inner iteration (j): {}", j);
/// if j >= 3 {
/// // breaks from inner loop, let's outer loop continue.
/// // breaks from inner loop, lets outer loop continue.
/// break;
/// }
/// if i >= 2 {
Expand Down

0 comments on commit d9fa356

Please sign in to comment.