Skip to content

Commit a0284f4

Browse files
committed
fix another typo
1 parent f661702 commit a0284f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/error-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ fn file_double<P: AsRef<Path>>(file_path: P) -> Result<i32, String> {
12841284

12851285
Earlier, we promised that we could get rid of the `map_err` calls. Indeed, all
12861286
we have to do is pick a type that `From` works with. As we saw in the previous
1287-
section, `From` has an impl that let's it convert any error type into a
1287+
section, `From` has an impl that lets it convert any error type into a
12881288
`Box<Error>`:
12891289

12901290
```rust

0 commit comments

Comments
 (0)