Skip to content

Commit

Permalink
Unignore example that now compiles
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Mar 26, 2019
1 parent 322aa86 commit b93ec30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch19-04-advanced-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ pub trait Write {
The `Result<..., Error>` is repeated a lot. As such, `std::io` has this type of
alias declaration:

```rust,ignore
```rust
type Result<T> = std::result::Result<T, std::io::Error>;
```

Expand Down

0 comments on commit b93ec30

Please sign in to comment.