From: Manish Goregaokar Date: Sat, 21 Feb 2015 20:17:14 +0000 (+0530) Subject: Rollup merge of #22524 - stevencrockett:master, r=steveklabnik X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=b7ac60a2f156de98eb9b7848a4dc8a208dd13aaa;hp=2e0609a8ad660026a3779232652ba196481c56d3;p=rust.git Rollup merge of #22524 - stevencrockett:master, r=steveklabnik The text is referring to the io module despite the code using the old_io module. --- 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.