From 2fefb22dca43d976c5cc65c88aa78573866e48a0 Mon Sep 17 00:00:00 2001 From: YawarRaza7349 Date: Fri, 26 Dec 2014 00:31:48 -0500 Subject: [PATCH] Fixed minor typo in docs for `Result`'s `err` method --- src/libcore/result.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/result.rs b/src/libcore/result.rs index 8014b4dc89d..bd1c6dbcf1e 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -332,7 +332,7 @@ impl Result { /// Convert from `Result` to `Option` /// - /// Converts `self` into an `Option`, consuming `self`, + /// Converts `self` into an `Option`, consuming `self`, /// and discarding the value, if any. /// /// # Example