about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorabdo <abd.nh25@gmail.com>2020-11-24 19:09:49 +0300
committerabdo <abd.nh25@gmail.com>2020-11-25 01:05:46 +0300
commit38cc998da0d9ad1521e9cbbe06e4372f45de2052 (patch)
tree66cc9c78dcaa7318bf581c3123f44b8bb685070d /library/std/src
parent53d19b37c514246acab020eaba9527cb97c421cf (diff)
downloadrust-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.rs4
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])
 ///