We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66d07d0 + 9812eb0 commit a8ed0bfCopy full SHA for a8ed0bf
src/doc/trpl/guessing-game.md
@@ -99,9 +99,12 @@ use std::io;
99
We’ll need to take user input, and then print the result as output. As such, we
100
need the `io` library from the standard library. Rust only imports a few things
101
by default into every program, [the ‘prelude’][prelude]. If it’s not in the
102
-prelude, you’ll have to `use` it directly.
+prelude, you’ll have to `use` it directly. There is also a second ‘prelude’, the
103
+[`io` prelude][ioprelude], which serves a similar function: you import it, and it
104
+imports a number of useful, `io`-related things.
105
106
[prelude]: ../std/prelude/index.html
107
+[ioprelude]: ../std/io/prelude/index.html
108
109
```rust,ignore
110
fn main() {
0 commit comments