From b93ec30bbc7b1b5c2f44223249ab359bed2ed5a6 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Tue, 26 Mar 2019 16:53:41 -0400 Subject: [PATCH] Unignore example that now compiles --- src/ch19-04-advanced-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch19-04-advanced-types.md b/src/ch19-04-advanced-types.md index 6e3077bd18..adcab5b643 100644 --- a/src/ch19-04-advanced-types.md +++ b/src/ch19-04-advanced-types.md @@ -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 = std::result::Result; ```