Fix a missed io => old_io

This commit is contained in:
Luke Steensen 2015-01-30 11:53:12 -06:00
parent 1a51eb9cca
commit 0a48818589
1 changed files with 1 additions and 1 deletions

View 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.