about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSeeker14491 <seeker14491@gmail.com>2015-10-04 00:34:21 -0500
committerSeeker14491 <seeker14491@gmail.com>2015-10-04 00:34:21 -0500
commita0284f4181739f6854b6e8efedf772b9a7d2ea70 (patch)
tree490f004ecf4494886a69322d4c46b65047aa143a
parentf66170258f71184c046570357400b69c2c904018 (diff)
fix another typo
-rw-r--r--src/doc/trpl/error-handling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/error-handling.md b/src/doc/trpl/error-handling.md
index eed430aa435..c1fb112206e 100644
--- a/src/doc/trpl/error-handling.md
+++ b/src/doc/trpl/error-handling.md
@@ -1284,7 +1284,7 @@ fn file_double<P: AsRef<Path>>(file_path: P) -> Result<i32, String> {
 
 Earlier, we promised that we could get rid of the `map_err` calls. Indeed, all
 we have to do is pick a type that `From` works with. As we saw in the previous
-section, `From` has an impl that let's it convert any error type into a
+section, `From` has an impl that lets it convert any error type into a
 `Box<Error>`:
 
 ```rust