1
Fork 0

Remove trailing whitespace

This commit is contained in:
Adam-Gleave 2022-09-01 17:32:00 +01:00
parent 9d0542b76d
commit 33afe9724a

View file

@ -6,12 +6,12 @@ impl bool {
/// Returns `Some(t)` if the `bool` is [`true`](../std/keyword.true.html),
/// or `None` otherwise.
///
/// Arguments passed to `then_some` are eagerly evaluated; if you are
/// passing the result of a function call, it is recommended to use
/// Arguments passed to `then_some` are eagerly evaluated; if you are
/// passing the result of a function call, it is recommended to use
/// [`then`], which is lazily evaluated.
///
///
/// [`then`]: bool::then
///
///
/// # Examples
///
/// ```