Skip to content

Commit 32fb77d

Browse files
authored
Rollup merge of #71535 - workingjubilee:jubilee-markdown-fix, r=Mark-Simulacrum
Fix typos in docs for keyword "in" Erroneous .md formatting was causing the link to not work on the currently-nightly keyword docs for `in`, and also there was a simple typo.
2 parents d0db0a8 + 0689efc commit 32fb77d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/keyword_docs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -685,12 +685,12 @@ mod impl_keyword {}
685685
/// ## Literal Examples:
686686
///
687687
/// * `for _ **in** 1..3 {}` - Iterate over an exclusive range up to but excluding 3.
688-
/// * `for _ **in** 1..=3 {}` - Iterate over an inclusive range up to and includeing 3.
688+
/// * `for _ **in** 1..=3 {}` - Iterate over an inclusive range up to and including 3.
689689
///
690690
/// (Read more about [range patterns])
691691
///
692692
/// [`Iterator`]: ../book/ch13-04-performance.html
693-
/// [`range patterns`]: ../reference/patterns.html?highlight=range#range-patterns
693+
/// [range patterns]: ../reference/patterns.html?highlight=range#range-patterns
694694
/// [`for`]: keyword.for.html
695695
mod in_keyword {}
696696

0 commit comments

Comments
 (0)