Rollup merge of #79383 - abdnh:patch-1, r=shepmaster
Fix bold code formatting in keyword docs
This commit is contained in:
commit
13375864ed
1 changed files with 2 additions and 2 deletions
|
@ -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])
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue