diff options
| author | abdo <abd.nh25@gmail.com> | 2020-11-24 19:09:49 +0300 |
|---|---|---|
| committer | abdo <abd.nh25@gmail.com> | 2020-11-25 01:05:46 +0300 |
| commit | 38cc998da0d9ad1521e9cbbe06e4372f45de2052 (patch) | |
| tree | 66cc9c78dcaa7318bf581c3123f44b8bb685070d /library/std/src | |
| parent | 53d19b37c514246acab020eaba9527cb97c421cf (diff) | |
| download | rust-38cc998da0d9ad1521e9cbbe06e4372f45de2052.tar.gz rust-38cc998da0d9ad1521e9cbbe06e4372f45de2052.zip | |
Fix bold code formatting in keyword docs
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/keyword_docs.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs index 80b74a9ba9b..67c8983c659 100644 --- a/library/std/src/keyword_docs.rs +++ b/library/std/src/keyword_docs.rs @@ -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]) /// |
