Skip to content

Commit e4e03bc

Browse files
committed
wording: results don't fail
1 parent 4891c00 commit e4e03bc

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)