diff --git a/library/core/src/option.rs b/library/core/src/option.rs index 9d5e03dd0de..899a3b83df6 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -1701,7 +1701,7 @@ impl<'a, T> IntoIterator for &'a mut Option { #[stable(since = "1.12.0", feature = "option_from")] impl From for Option { - /// Copies `val` into a new `Some`. + /// Moves `val` into a new [`Some`]. /// /// # Examples ///