From a0284f4181739f6854b6e8efedf772b9a7d2ea70 Mon Sep 17 00:00:00 2001 From: Seeker14491 Date: Sun, 4 Oct 2015 00:34:21 -0500 Subject: [PATCH] fix another typo --- src/doc/trpl/error-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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>(file_path: P) -> Result { 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`: ```rust -- GitLab