diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2021-09-16 10:57:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-16 10:57:25 -0700 |
| commit | d9fa3561b67893268b2e90d74d4c0a3212e20d4f (patch) | |
| tree | 8066ad9de40c8e44dd6da81cf4ee1a150cae99bf /library | |
| parent | 84d384c8c152dee4ce88a4f8a462bd9f7097ccbe (diff) | |
| parent | a452d0263696997c36a520db622caf8b12ba221d (diff) | |
| download | rust-d9fa3561b67893268b2e90d74d4c0a3212e20d4f.tar.gz rust-d9fa3561b67893268b2e90d74d4c0a3212e20d4f.zip | |
Rollup merge of #89009 - tatami4:master, r=Mark-Simulacrum
Fix typo in `break` docs
Diffstat (limited to 'library')
| -rw-r--r-- | library/std/src/keyword_docs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs index 3af941f59b6..2e938070374 100644 --- a/library/std/src/keyword_docs.rs +++ b/library/std/src/keyword_docs.rs @@ -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 { |
