From 2b2f40ef539b0ba1be4afc55b81a71625ec77c66 Mon Sep 17 00:00:00 2001 From: Sven Dedeene Date: Mon, 29 May 2017 21:13:05 +0200 Subject: [PATCH] Missing word "does" ch19-04 --- second-edition/src/ch19-04-advanced-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second-edition/src/ch19-04-advanced-types.md b/second-edition/src/ch19-04-advanced-types.md index e0200c00a..af3065ea4 100644 --- a/second-edition/src/ch19-04-advanced-types.md +++ b/second-edition/src/ch19-04-advanced-types.md @@ -203,7 +203,7 @@ let guess = match guess.trim().parse() { ``` What would the type of `guess` be here? It'd have to be both an integer and a -string, and Rust requires that `guess` can only have one type. So what +string, and Rust requires that `guess` can only have one type. So what does `continue` return? Why are we allowed to return a `u32` from one arm in Listing 19-33 and have another arm that ends with `continue`?