nit fixed

This commit is contained in:
Ame 2023-02-03 11:41:59 -06:00
parent c2b65ffe29
commit b384692f4c
1 changed files with 1 additions and 1 deletions

View File

@ -943,7 +943,7 @@ impl<T> Option<T> {
// Transforming contained values // Transforming contained values
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////
/// Maps an `Option<T>` to `Option<U>` by applying a function to a contained value (if `Some`) or return `None` (if `None`). /// Maps an `Option<T>` to `Option<U>` by applying a function to a contained value (if `Some`) or returns `None` (if `None`).
/// ///
/// # Examples /// # Examples
/// ///