Skip to content

Commit bcd6975

Browse files
committed
Auto merge of #80590 - camelid:bool-never-docs, r=nagisa
Update `bool` and `!` docs
2 parents 18cb4ad + 4e76759 commit bcd6975

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

library/std/src/primitive_docs.rs

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
/// `bool` implements various traits, such as [`BitAnd`], [`BitOr`], [`Not`], etc.,
1212
/// which allow us to perform boolean operations using `&`, `|` and `!`.
1313
///
14-
/// `if` always demands a `bool` value. [`assert!`], which is an important macro in testing,
15-
/// checks whether an expression returns `true` and panics if it isn't.
14+
/// `if` requires a `bool` value as its conditional. [`assert!`], which is an
15+
/// important macro in testing, checks whether an expression is `true` and panics
16+
/// if it isn't.
1617
///
1718
/// ```
1819
/// let bool_val = true & false | false;
@@ -25,7 +26,7 @@
2526
///
2627
/// # Examples
2728
///
28-
/// A trivial example of the usage of `bool`,
29+
/// A trivial example of the usage of `bool`:
2930
///
3031
/// ```
3132
/// let praise_the_borrow_checker = true;
@@ -122,9 +123,9 @@ mod prim_bool {}
122123
/// `!`, if we have to call [`String::from_str`] for some reason the result will be a
123124
/// [`Result<String, !>`] which we can unpack like this:
124125
///
125-
/// ```ignore (string-from-str-error-type-is-not-never-yet)
126-
/// #[feature(exhaustive_patterns)]
127-
/// // NOTE: this does not work today!
126+
/// ```
127+
/// #![feature(exhaustive_patterns)]
128+
/// use std::str::FromStr;
128129
/// let Ok(s) = String::from_str("hello");
129130
/// ```
130131
///

0 commit comments

Comments
 (0)