about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-07-19 19:12:32 -0700
committerGitHub <noreply@github.com>2020-07-19 19:12:32 -0700
commitd527c7db671fcd68c754c3695d3db402006de304 (patch)
tree8a3e48bac324f9654847bdb60cd4917d0be23147
parentd7f94516345a36ddfcd68cbdf1df835d356795c3 (diff)
parenta459fc4e3140cd89457f973045d9c82ef2928698 (diff)
downloadrust-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.rs7
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")]