rollup merge of #21783: lukesteensen/patch-1

This commit is contained in:
Alex Crichton 2015-01-30 12:03:37 -08:00
commit eb3a06093c

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.