We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0abbf0f + 3f48ed3 commit 4ac0149Copy full SHA for 4ac0149
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