@@ -387,10 +387,11 @@ mod extern_keyword {}
387387//
388388/// A value of type [`bool`] representing logical **false**.
389389///
390- /// The documentation for this keyword is [not yet complete]. Pull requests welcome!
390+ /// `false` is the logical opposite of [`true`].
391391///
392- /// [`bool`]: primitive.bool.html
393- /// [not yet complete]: https://github.com/rust-lang/rust/issues/34601
392+ /// See the documentation for [`true`] for more information.
393+ ///
394+ /// [`true`]: keyword.true.html
394395mod false_keyword { }
395396
396397#[ doc( keyword = "fn" ) ]
@@ -473,8 +474,8 @@ mod fn_keyword {}
473474/// * `for` is also used for [higher-ranked trait bounds] as in `for<'a> &'a T: PartialEq<i32>`.
474475///
475476/// for-in-loops, or to be more precise, iterator loops, are a simple syntactic sugar over a common
476- /// practice within Rust, which is to loop over an iterator until that iterator returns `None` (or
477- /// `break` is called ).
477+ /// practice within Rust, which is to loop over anything that implements [`IntoIterator`] until the
478+ /// iterator returned by `.into_iter()` returns `None` (or the loop body uses `break` ).
478479///
479480/// ```rust
480481/// for i in 0..5 {
@@ -680,7 +681,7 @@ mod impl_keyword {}
680681//
681682/// Iterate over a series of values with [`for`].
682683///
683- /// The expression immediately following `in` must implement the [`Iterator `] trait.
684+ /// The expression immediately following `in` must implement the [`IntoIterator `] trait.
684685///
685686/// ## Literal Examples:
686687///
@@ -689,7 +690,7 @@ mod impl_keyword {}
689690///
690691/// (Read more about [range patterns])
691692///
692- /// [`Iterator `]: ../book/ch13-04-performance.html
693+ /// [`IntoIterator `]: ../book/ch13-04-performance.html
693694/// [range patterns]: ../reference/patterns.html?highlight=range#range-patterns
694695/// [`for`]: keyword.for.html
695696mod in_keyword { }
0 commit comments