about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJulian Viereck <julian.viereck@gmail.com>2015-03-30 18:52:36 +0200
committerJulian Viereck <julian.viereck@gmail.com>2015-03-30 21:00:09 +0200
commit085bcfa37e42d807eb292085b57d0559424635a8 (patch)
tree985d2380c0a2d3b5ecc1429322c0fdd33bd385fd
parent14192d6df5cc714e5c9a3ca70b08f2514d977be2 (diff)
downloadrust-085bcfa37e42d807eb292085b57d0559424635a8.tar.gz
rust-085bcfa37e42d807eb292085b57d0559424635a8.zip
Second attempt to fix #23713 based on follow-up comments in #23791.
-rw-r--r--src/libcore/option.rs2
1 files changed, 1 insertions, 1 deletions
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<T> Option<T> {
         }
     }
 
-    /// Moves the value `v` out of the `Option<T>` if the content of the `Option<T>` is a `Some(v)`.
+    /// Moves the value `v` out of the `Option<T>` if it is `Some(v)`.
     ///
     /// # Panics
     ///