about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-30 12:03:37 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-30 12:03:37 -0800
commiteb3a06093c2dac02cbc40994c8cd42fb5286f609 (patch)
treeb677a32d55c36a4f90bec5f1a05d57d0c23a969f /src
parenta75e308a61be8cc64ed19214daa979c049e7c459 (diff)
parent0a488185890eaff71e0e928917f3f16640328443 (diff)
downloadrust-eb3a06093c2dac02cbc40994c8cd42fb5286f609.tar.gz
rust-eb3a06093c2dac02cbc40994c8cd42fb5286f609.zip
rollup merge of #21783: lukesteensen/patch-1
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/standard-input.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/standard-input.md b/src/doc/trpl/standard-input.md
index 0c26fb2b44f..794b1df7563 100644
--- a/src/doc/trpl/standard-input.md
+++ b/src/doc/trpl/standard-input.md
@@ -20,7 +20,7 @@ Let's go over these chunks, one by one:
 std::old_io::stdin();
 ```
 
-This calls a function, `stdin()`, that lives inside the `std::io` module. As
+This calls a function, `stdin()`, that lives inside the `std::old_io` module. As
 you can imagine, everything in `std` is provided by Rust, the 'standard
 library.' We'll talk more about the module system later.