Fix bold code formatting in keyword docs

This commit is contained in:
abdo 2020-11-24 19:09:49 +03:00
parent 53d19b37c5
commit 38cc998da0

View file

@ -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])
///