Skip to content

Commit 0a48818

Browse files
committed
Fix a missed io => old_io
1 parent 1a51eb9 commit 0a48818

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/standard-input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Let's go over these chunks, one by one:
2020
std::old_io::stdin();
2121
```
2222

23-
This calls a function, `stdin()`, that lives inside the `std::io` module. As
23+
This calls a function, `stdin()`, that lives inside the `std::old_io` module. As
2424
you can imagine, everything in `std` is provided by Rust, the 'standard
2525
library.' We'll talk more about the module system later.
2626

0 commit comments

Comments
 (0)