diff options
| author | Jakub Bukaj <jakub@jakub.cc> | 2014-11-23 14:12:00 -0500 |
|---|---|---|
| committer | Jakub Bukaj <jakub@jakub.cc> | 2014-11-23 14:12:00 -0500 |
| commit | e9fcfe6a914a0de82bf5e1e8e2b0186569566f37 (patch) | |
| tree | c3b9824497e029293a655c10ed6a388523c20f1b | |
| parent | 34ab1544e26399c0b986800adb07de9a0b311ec3 (diff) | |
| parent | b637a867a52b94a0e1492aebc262c36b8f4b860b (diff) | |
| download | rust-e9fcfe6a914a0de82bf5e1e8e2b0186569566f37.tar.gz rust-e9fcfe6a914a0de82bf5e1e8e2b0186569566f37.zip | |
rollup merge of #19232: nicholasbishop/bishop_fix_result_typo
| -rw-r--r-- | src/libcore/result.rs | 2 |
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); |
