diff options
| author | bors <bors@rust-lang.org> | 2015-11-23 14:37:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-11-23 14:37:35 +0000 |
| commit | 69b8e74c31c5bc2a35c40cecbceffba773cdecbf (patch) | |
| tree | a873d3f50c009cb2a3df5d8b74e2f94f92478d85 | |
| parent | 4891c00634f209bcc66d7f00bc507eb35a0fe6a8 (diff) | |
| parent | e4e03bc74af129c9af852f9035075a4a0ef17a2c (diff) | |
| download | rust-69b8e74c31c5bc2a35c40cecbceffba773cdecbf.tar.gz rust-69b8e74c31c5bc2a35c40cecbceffba773cdecbf.zip | |
Auto merge of #29998 - fiveop:patch-1, r=steveklabnik
| -rw-r--r-- | src/doc/book/error-handling.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/error-handling.md b/src/doc/book/error-handling.md index 52a4e7324ee..600019bcceb 100644 --- a/src/doc/book/error-handling.md +++ b/src/doc/book/error-handling.md @@ -405,7 +405,7 @@ enum Result<T, E> { The `Result` type is a richer version of `Option`. Instead of expressing the possibility of *absence* like `Option` does, `Result` expresses the possibility -of *error*. Usually, the *error* is used to explain why the result of some +of *error*. Usually, the *error* is used to explain why the execution of some computation failed. This is a strictly more general form of `Option`. Consider the following type alias, which is semantically equivalent to the real `Option<T>` in every way: |
