From a4b1361a0102d4bc0f473b560d62819f28cf4c4b Mon Sep 17 00:00:00 2001 From: Zbigniew Siciarz Date: Fri, 4 Jul 2014 15:23:17 +0200 Subject: [PATCH] Fixed Result type parameters in doc comment. --- 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 5cbbf30cd360..32e1d570be36 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -10,7 +10,7 @@ //! Error handling with the `Result` type //! -//! `Result` is the type used for returning and propagating +//! `Result` is the type used for returning and propagating //! errors. It is an enum with the variants, `Ok(T)`, representing //! success and containing a value, and `Err(E)`, representing error //! and containing an error value.