1
Fork 0

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.
This commit is contained in:
Manish Goregaokar 2020-07-19 19:12:32 -07:00 committed by GitHub
commit d527c7db67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")]