From cf0fc72a3eb679eaf5c134f44cf82a5a70e79fba Mon Sep 17 00:00:00 2001 From: Vangelis Katsikaros Date: Thu, 20 Oct 2016 18:00:12 +0300 Subject: [PATCH] TRPL: guessing game: minor clarification --- src/doc/book/guessing-game.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/guessing-game.md b/src/doc/book/guessing-game.md index 222597be0a946..4e0e372868941 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