Rollup merge of #23474 - nagisa:patch-1, r=steveklabnik

r? @steveklabnik
This commit is contained in:
Manish Goregaokar 2015-03-19 06:09:20 +05:30
commit b06c9a01c1

View File

@ -330,7 +330,7 @@ impl<T, E> Result<T, E> {
/// Convert from `Result<T, E>` to `Option<E>`
///
/// Converts `self` into an `Option<E>`, consuming `self`,
/// and discarding the value, if any.
/// and discarding the success value, if any.
///
/// # Examples
///