Skip to content

Commit 1337586

Browse files
Rollup merge of #79383 - abdnh:patch-1, r=shepmaster
Fix bold code formatting in keyword docs
2 parents f4301a2 + 38cc998 commit 1337586

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
@@ -718,8 +718,8 @@ mod impl_keyword {}
718718
///
719719
/// ## Literal Examples:
720720
///
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.
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.
723723
///
724724
/// (Read more about [range patterns])
725725
///

0 commit comments

Comments
 (0)