Merge pull request #726 from Sfonxs/master

Missing word "does" ch19-04
This commit is contained in:
Steve Klabnik
2017-05-31 11:13:59 -04:00
committed by GitHub

View File

@@ -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`?