Skip to content

Commit

Permalink
Merge pull request #476 from gypsydave5/ch09-02-fix-the-end
Browse files Browse the repository at this point in the history
Fixes missing end to Ch09 02 on mdBook version
  • Loading branch information
carols10cents authored Feb 25, 2017
2 parents 90f6982 + 9bbbcad commit ce2b7ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch09-02-recoverable-errors-with-result.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ we defined in Listing 9-5. The part of the `match` that requires a return type
of `Result` is `return Err(e)`, so the return type of the function must be a
`Result` to be compatible with this `return`.

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

```rust,ignore
Expand Down

0 comments on commit ce2b7ac

Please sign in to comment.