Skip to content

Commit 38cc998

Browse files
committed
Fix bold code formatting in keyword docs
1 parent 53d19b3 commit 38cc998

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/keyword_docs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -707,8 +707,8 @@ mod impl_keyword {}
707707
///
708708
/// ## Literal Examples:
709709
///
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.
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.
712712
///
713713
/// (Read more about [range patterns])
714714
///

0 commit comments

Comments
 (0)