Skip to content

Commit

Permalink
Fix bold code formatting in keyword docs
Browse files Browse the repository at this point in the history
  • Loading branch information
abdnh committed Nov 24, 2020
1 parent 53d19b3 commit 38cc998
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/keyword_docs.rs
Expand Up @@ -707,8 +707,8 @@ mod impl_keyword {}
///
/// ## Literal Examples:
///
/// * `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.
/// * `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.
///
/// (Read more about [range patterns])
///
Expand Down

0 comments on commit 38cc998

Please sign in to comment.