diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2020-07-19 19:12:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-19 19:12:32 -0700 |
| commit | d527c7db671fcd68c754c3695d3db402006de304 (patch) | |
| tree | 8a3e48bac324f9654847bdb60cd4917d0be23147 | |
| parent | d7f94516345a36ddfcd68cbdf1df835d356795c3 (diff) | |
| parent | a459fc4e3140cd89457f973045d9c82ef2928698 (diff) | |
| download | rust-d527c7db671fcd68c754c3695d3db402006de304.tar.gz rust-d527c7db671fcd68c754c3695d3db402006de304.zip | |
Rollup merge of #73618 - poliorcetics:false-keyword, r=jyn514
Documentation for the false keyword Partial fix of #34601. Short documentation for the false keyword mainly pointing to the `true` keyword.
| -rw-r--r-- | src/libstd/keyword_docs.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libstd/keyword_docs.rs b/src/libstd/keyword_docs.rs index d985f10ccb4..e17771f57ec 100644 --- a/src/libstd/keyword_docs.rs +++ b/src/libstd/keyword_docs.rs @@ -387,10 +387,11 @@ mod extern_keyword {} // /// A value of type [`bool`] representing logical **false**. /// -/// The documentation for this keyword is [not yet complete]. Pull requests welcome! +/// `false` is the logical opposite of [`true`]. /// -/// [`bool`]: primitive.bool.html -/// [not yet complete]: https://github.com/rust-lang/rust/issues/34601 +/// See the documentation for [`true`] for more information. +/// +/// [`true`]: keyword.true.html mod false_keyword {} #[doc(keyword = "fn")] |
