about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-22 01:47:14 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-22 01:47:14 +0530
commitb7ac60a2f156de98eb9b7848a4dc8a208dd13aaa (patch)
tree998e11f762a4f54a0601c531fd490e6d95229f5a /src
parent2e0609a8ad660026a3779232652ba196481c56d3 (diff)
parente0067f9852f0de5c1b6c17a26dc7c3924d6aa0d4 (diff)
downloadrust-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.md2
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.