diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 2dd8bf67220ab..84aad58f396f9 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -331,7 +331,7 @@ impl Option { } } - /// Returns the inner `T` of a `Some(T)`. + /// Moves the value `v` out of the `Option` if the content of the `Option` is a `Some(v)`. /// /// # Panics ///