diff --git a/library/core/src/option.rs b/library/core/src/option.rs index 2715981e2d665..d6ca879e83219 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -1960,7 +1960,7 @@ impl Option { mem::replace(self, Some(value)) } - /// Zips `self` with another `Option`. + /// Makes a tuple of the value in `self` and the value in another `Option`. /// /// If `self` is `Some(s)` and `other` is `Some(o)`, this method returns `Some((s, o))`. /// Otherwise, `None` is returned. @@ -1988,7 +1988,7 @@ impl Option { } } - /// Zips `self` and another `Option` with function `f`. + /// Combines the value in `self` with the value in another `Option`, using the function `f`. /// /// If `self` is `Some(s)` and `other` is `Some(o)`, this method returns `Some(f(s, o))`. /// Otherwise, `None` is returned.