Skip to content

Commit ce2b7ac

Browse files
Merge pull request #476 from gypsydave5/ch09-02-fix-the-end
Fixes missing end to Ch09 02 on mdBook version
2 parents 90f6982 + 9bbbcad commit ce2b7ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ch09-02-recoverable-errors-with-result.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ we defined in Listing 9-5. The part of the `match` that requires a return type
435435
of `Result` is `return Err(e)`, so the return type of the function must be a
436436
`Result` to be compatible with this `return`.
437437

438-
Let’s look at what happens if use `?` in the `main` function, which you’ll
438+
Let’s look at what happens if we use `?` in the `main` function, which you’ll
439439
recall has a return type of `()`:
440440

441441
```rust,ignore

0 commit comments

Comments
 (0)