]> git.lizzy.rs Git - rust.git/commitdiff
Fix typo in `break` docs
authortatami4 <54238857+tatami4@users.noreply.github.com>
Thu, 16 Sep 2021 11:51:14 +0000 (14:51 +0300)
committerGitHub <noreply@github.com>
Thu, 16 Sep 2021 11:51:14 +0000 (14:51 +0300)
library/std/src/keyword_docs.rs

index 3af941f59b68918d1417e444428112cdc662e17a..2e93807037464af71fddb3fe7c9004b5b2fcca23 100644 (file)
@@ -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 {