Auto merge of #29998 - fiveop:patch-1, r=steveklabnik

This commit is contained in:
bors 2015-11-23 14:37:35 +00:00
commit 69b8e74c31

View File

@ -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: