diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-22 01:47:14 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-22 01:47:14 +0530 |
| commit | b7ac60a2f156de98eb9b7848a4dc8a208dd13aaa (patch) | |
| tree | 998e11f762a4f54a0601c531fd490e6d95229f5a /src | |
| parent | 2e0609a8ad660026a3779232652ba196481c56d3 (diff) | |
| parent | e0067f9852f0de5c1b6c17a26dc7c3924d6aa0d4 (diff) | |
| download | rust-b7ac60a2f156de98eb9b7848a4dc8a208dd13aaa.tar.gz rust-b7ac60a2f156de98eb9b7848a4dc8a208dd13aaa.zip | |
Rollup merge of #22524 - stevencrockett:master, r=steveklabnik
The text is referring to the io module despite the code using the old_io module.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/trpl/guessing-game.md | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
