diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 6d9b93e9be07..f5cd4f81b7bf 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -333,7 +333,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 ///