From 085bcfa37e42d807eb292085b57d0559424635a8 Mon Sep 17 00:00:00 2001 From: Julian Viereck Date: Mon, 30 Mar 2015 18:52:36 +0200 Subject: [PATCH] Second attempt to fix #23713 based on follow-up comments in #23791. --- src/libcore/option.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/option.rs b/src/libcore/option.rs index cd82936b0b3..c5102ede29f 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -333,7 +333,7 @@ impl Option { } } - /// Moves the value `v` out of the `Option` if the content of the `Option` is a `Some(v)`. + /// Moves the value `v` out of the `Option` if it is `Some(v)`. /// /// # Panics ///