about summary refs log tree commit diff
diff options
context:
space:
mode:
-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 4df9eaa4815..542115763c2 100644
--- a/src/libcore/option.rs
+++ b/src/libcore/option.rs
@@ -1357,7 +1357,7 @@ impl<'a, T> IntoIterator for &'a mut Option<T> {
 
 #[stable(since = "1.12.0", feature = "option_from")]
 impl<T> From<T> for Option<T> {
-    /// Copies val to a new Option::Some
+    /// Copies `val` into a new `Some`.
     ///
     /// # Examples
     ///