We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f4301a2 + 38cc998 commit 1337586Copy full SHA for 1337586
library/std/src/keyword_docs.rs
@@ -718,8 +718,8 @@ mod impl_keyword {}
718
///
719
/// ## Literal Examples:
720
721
-/// * `for _ **in** 1..3 {}` - Iterate over an exclusive range up to but excluding 3.
722
-/// * `for _ **in** 1..=3 {}` - Iterate over an inclusive range up to and including 3.
+/// * `for _ in 1..3 {}` - Iterate over an exclusive range up to but excluding 3.
+/// * `for _ in 1..=3 {}` - Iterate over an inclusive range up to and including 3.
723
724
/// (Read more about [range patterns])
725
0 commit comments