about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Bukaj <jakub@jakub.cc>2014-11-23 14:12:00 -0500
committerJakub Bukaj <jakub@jakub.cc>2014-11-23 14:12:00 -0500
commite9fcfe6a914a0de82bf5e1e8e2b0186569566f37 (patch)
treec3b9824497e029293a655c10ed6a388523c20f1b
parent34ab1544e26399c0b986800adb07de9a0b311ec3 (diff)
parentb637a867a52b94a0e1492aebc262c36b8f4b860b (diff)
downloadrust-e9fcfe6a914a0de82bf5e1e8e2b0186569566f37.tar.gz
rust-e9fcfe6a914a0de82bf5e1e8e2b0186569566f37.zip
rollup merge of #19232: nicholasbishop/bishop_fix_result_typo
-rw-r--r--src/libcore/result.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/result.rs b/src/libcore/result.rs
index 16798c039ba..3240b4207a1 100644
--- a/src/libcore/result.rs
+++ b/src/libcore/result.rs
@@ -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);