From e0067f9852f0de5c1b6c17a26dc7c3924d6aa0d4 Mon Sep 17 00:00:00 2001 From: Steven Crockett Date: Thu, 19 Feb 2015 05:13:49 +0000 Subject: [PATCH] docs: correct guessing game to mention old_io module instead of io The text is referring to the io module despite the code using the old_io module. --- src/doc/trpl/guessing-game.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/guessing-game.md b/src/doc/trpl/guessing-game.md index 01f270f1951..a40374fe30f 100644 --- a/src/doc/trpl/guessing-game.md +++ b/src/doc/trpl/guessing-game.md @@ -91,7 +91,7 @@ fn main() { ``` You've seen this code before, when we talked about standard input. We -import the `std::io` module with `use`, and then our `main` function contains +import the `std::old_io` module with `use`, and then our `main` function contains our program's logic. We print a little message announcing the game, ask the user to input a guess, get their input, and then print it out.