]> git.lizzy.rs Git - rust.git/commitdiff
Fix a missed io => old_io
authorLuke Steensen <luke.steensen@gmail.com>
Fri, 30 Jan 2015 17:53:12 +0000 (11:53 -0600)
committerLuke Steensen <luke.steensen@gmail.com>
Fri, 30 Jan 2015 17:53:12 +0000 (11:53 -0600)
src/doc/trpl/standard-input.md

index 0c26fb2b44fa4d9509df78a791a6c5b84b9894f8..794b1df7563de7cde12943cf122762f1265806e5 100644 (file)
@@ -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.