diff options
| author | Vangelis Katsikaros <vkatsikaros@gmail.com> | 2016-10-20 18:00:12 +0300 |
|---|---|---|
| committer | Vangelis Katsikaros <vkatsikaros@gmail.com> | 2016-10-20 18:00:12 +0300 |
| commit | cf0fc72a3eb679eaf5c134f44cf82a5a70e79fba (patch) | |
| tree | 0b60bf2b1cd80a914229a40e5d4ae4235e7e1851 /src | |
| parent | eb38d426c41aa8487e8cb8a9dafbfcf3528201f9 (diff) | |
| download | rust-cf0fc72a3eb679eaf5c134f44cf82a5a70e79fba.tar.gz rust-cf0fc72a3eb679eaf5c134f44cf82a5a70e79fba.zip | |
TRPL: guessing game: minor clarification
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/book/guessing-game.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/guessing-game.md b/src/doc/book/guessing-game.md index 222597be0a9..4e0e3728689 100644 --- a/src/doc/book/guessing-game.md +++ b/src/doc/book/guessing-game.md @@ -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 we’ll get a warning: ```bash |
