diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-19 06:09:20 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-19 08:49:35 +0530 |
| commit | b06c9a01c1fd8e30f206f09372c3cf4b4cc5ed7a (patch) | |
| tree | 553030afafdf401aaf2b2410cbd1c3a7e4d9a526 | |
| parent | d6986c9ce91b88b072f2e90822ff9930e648674d (diff) | |
| parent | 07c7bb9938b80dc19078183c966e9545c7dd2863 (diff) | |
Rollup merge of #23474 - nagisa:patch-1, r=steveklabnik
r? @steveklabnik
| -rw-r--r-- | src/libcore/result.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/result.rs b/src/libcore/result.rs index 7732ff5f9b9..a5b2fddfd5d 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -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 /// |
