]> git.lizzy.rs Git - rust.git/commitdiff
Fix bold code formatting in keyword docs
authorabdo <abd.nh25@gmail.com>
Tue, 24 Nov 2020 16:09:49 +0000 (19:09 +0300)
committerabdo <abd.nh25@gmail.com>
Tue, 24 Nov 2020 22:05:46 +0000 (01:05 +0300)
library/std/src/keyword_docs.rs

index 80b74a9ba9b09229a9629c5e6bb90f750bcb630d..67c8983c6592e810f3ae3d365110d0eb01cf5f9f 100644 (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])
 ///