We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53d19b3 commit 38cc998Copy full SHA for 38cc998
library/std/src/keyword_docs.rs
@@ -707,8 +707,8 @@ mod impl_keyword {}
707
///
708
/// ## Literal Examples:
709
710
-/// * `for _ **in** 1..3 {}` - Iterate over an exclusive range up to but excluding 3.
711
-/// * `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.
712
713
/// (Read more about [range patterns])
714
0 commit comments