From 7b28ba07781c0c769c393dbb002367ec1f972b4b Mon Sep 17 00:00:00 2001 From: Artem Date: Wed, 12 Nov 2014 11:18:30 +0300 Subject: [PATCH] Results aren't panics A typo about Results being panics crawled in. Fixing it. --- 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 c4cb29872415..69802aef4c28 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -267,7 +267,7 @@ //! a bug. //! //! A module that instead returns `Results` is alerting the caller -//! that panics are possible, and providing precise control over how +//! that failure is possible, and providing precise control over how //! it is handled. //! //! Furthermore, panics may not be recoverable at all, depending on