From 121bffce8106a73b90eb4f68da42d4d7ceca5375 Mon Sep 17 00:00:00 2001 From: Waffle Date: Thu, 19 Mar 2020 22:19:37 +0300 Subject: [PATCH] make "other" in docs of `Option::{zip,zip_with}` monofont --- src/libcore/option.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 4bec3ec9f6b..3aab8b1b333 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -916,7 +916,7 @@ impl Option { /// Zips `self` with another `Option`. /// - /// If `self` is `Some(s)` and other is `Some(o)`, this method returns `Some((s, o))`. + /// If `self` is `Some(s)` and `other` is `Some(o)`, this method returns `Some((s, o))`. /// Otherwise, `None` is returned. /// /// # Examples @@ -937,7 +937,7 @@ impl Option { /// Zips `self` and another `Option` with function `f`. /// - /// If `self` is `Some(s)` and other is `Some(o)`, this method returns `Some(f(s, o))`. + /// If `self` is `Some(s)` and `other` is `Some(o)`, this method returns `Some(f(s, o))`. /// Otherwise, `None` is returned. /// /// # Examples