auto merge of #15414 : zsiciarz/rust/patch-1, r=alexcrichton

This commit is contained in:
bors 2014-07-05 06:46:47 +00:00
commit b00f4ec8f1

View file

@ -10,7 +10,7 @@
//! Error handling with the `Result` type
//!
//! `Result<T>` is the type used for returning and propagating
//! `Result<T, E>` 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.