about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-19 06:09:20 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-19 08:49:35 +0530
commitb06c9a01c1fd8e30f206f09372c3cf4b4cc5ed7a (patch)
tree553030afafdf401aaf2b2410cbd1c3a7e4d9a526
parentd6986c9ce91b88b072f2e90822ff9930e648674d (diff)
parent07c7bb9938b80dc19078183c966e9545c7dd2863 (diff)
Rollup merge of #23474 - nagisa:patch-1, r=steveklabnik
 r? @steveklabnik
-rw-r--r--src/libcore/result.rs2
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
     ///