diff --git a/src/libcore/result.rs b/src/libcore/result.rs index 5cbbf30cd36..32e1d570be3 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.