1
Fork 0

rollup merge of #19232: nicholasbishop/bishop_fix_result_typo

This commit is contained in:
Jakub Bukaj 2014-11-23 14:12:00 -05:00
commit e9fcfe6a91

View file

@ -57,7 +57,7 @@
//!
//! Pattern matching on `Result`s is clear and straightforward for
//! simple cases, but `Result` comes with some convenience methods
//! that make working it more succinct.
//! that make working with it more succinct.
//!
//! ```
//! let good_result: Result<int, int> = Ok(10);