Skip to content

Commit 69b8e74

Browse files
committed
Auto merge of #29998 - fiveop:patch-1, r=steveklabnik
2 parents 4891c00 + e4e03bc commit 69b8e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/error-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ enum Result<T, E> {
405405

406406
The `Result` type is a richer version of `Option`. Instead of expressing the
407407
possibility of *absence* like `Option` does, `Result` expresses the possibility
408-
of *error*. Usually, the *error* is used to explain why the result of some
408+
of *error*. Usually, the *error* is used to explain why the execution of some
409409
computation failed. This is a strictly more general form of `Option`. Consider
410410
the following type alias, which is semantically equivalent to the real
411411
`Option<T>` in every way:

0 commit comments

Comments
 (0)