Rollup merge of #37309 - vkatsikaros:vkatsikaros/37307, r=GuillaumeGomez

TRPL: guessing game: minor clarification

The original text is correct and exact, but might confuse a non-English speaker (at least I was confused), so I made it a bit more plain (see https://github.com/rust-lang/rust/issues/37307).

I know minor wording changes like these are affected by personal style, so I'd understand if you don't find this useful.

r? @steveklabnik
This commit is contained in:
Guillaume Gomez 2016-10-22 01:22:00 +02:00 committed by GitHub
commit c3802f6789
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ displaying the message.
[expect]: ../std/result/enum.Result.html#method.expect
[panic]: error-handling.html
If we leave off calling this method, our program will compile, but
If we do not call `expect()`, our program will compile, but
well get a warning:
```bash