Skip to content

Commit

Permalink
Rollup merge of #79383 - abdnh:patch-1, r=shepmaster
Browse files Browse the repository at this point in the history
Fix bold code formatting in keyword docs
  • Loading branch information
jonas-schievink authored Nov 28, 2020
2 parents f4301a2 + 38cc998 commit 1337586
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/keyword_docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,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 1337586

Please sign in to comment.