Rollup merge of #79383 - abdnh:patch-1, r=shepmaster

Fix bold code formatting in keyword docs
This commit is contained in:
Jonas Schievink 2020-11-28 15:58:21 +01:00 committed by GitHub
commit 13375864ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -718,8 +718,8 @@ mod impl_keyword {}
/// ///
/// ## Literal Examples: /// ## Literal Examples:
/// ///
/// * `for _ **in** 1..3 {}` - Iterate over an exclusive range up to but excluding 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. /// * `for _ in 1..=3 {}` - Iterate over an inclusive range up to and including 3.
/// ///
/// (Read more about [range patterns]) /// (Read more about [range patterns])
/// ///