We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97524b commit 0f426aaCopy full SHA for 0f426aa
src/doc/book/guessing-game.md
@@ -295,7 +295,7 @@ Rust warns us that we haven’t used the `Result` value. This warning comes from
295
a special annotation that `io::Result` has. Rust is trying to tell you that
296
you haven’t handled a possible error. The right way to suppress the error is
297
to actually write error handling. Luckily, if we want to crash if there’s
298
-a problem, we can use these two little methods. If we can recover from the
+a problem, we can use `expect()`. If we can recover from the
299
error somehow, we’d do something else, but we’ll save that for a future
300
project.
301
0 commit comments