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.