about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-11-23 14:37:35 +0000
committerbors <bors@rust-lang.org>2015-11-23 14:37:35 +0000
commit69b8e74c31c5bc2a35c40cecbceffba773cdecbf (patch)
treea873d3f50c009cb2a3df5d8b74e2f94f92478d85
parent4891c00634f209bcc66d7f00bc507eb35a0fe6a8 (diff)
parente4e03bc74af129c9af852f9035075a4a0ef17a2c (diff)
downloadrust-69b8e74c31c5bc2a35c40cecbceffba773cdecbf.tar.gz
rust-69b8e74c31c5bc2a35c40cecbceffba773cdecbf.zip
Auto merge of #29998 - fiveop:patch-1, r=steveklabnik
-rw-r--r--src/doc/book/error-handling.md2
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: