From 0a488185890eaff71e0e928917f3f16640328443 Mon Sep 17 00:00:00 2001 From: Luke Steensen Date: Fri, 30 Jan 2015 11:53:12 -0600 Subject: [PATCH] Fix a missed io => old_io --- src/doc/trpl/standard-input.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.