Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ch02-00-guessing-game-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ _src/main.rs_.

This code contains a lot of information, so let’s go over it line by line. To
obtain user input and then print the result as output, we need to bring the
`io` input/output library into scope. The `io` library comes from the standard
`io` input/output module into scope. The `io` module comes from the standard
library, known as `std`:

```rust,ignore
Expand All @@ -95,7 +95,7 @@ brings into the scope of every program. This set is called the _prelude_, and
you can see everything in it [in the standard library documentation][prelude].

If a type you want to use isn’t in the prelude, you have to bring that type
into scope explicitly with a `use` statement. Using the `std::io` library
into scope explicitly with a `use` statement. Using the `std::io` module
provides you with a number of useful features, including the ability to accept
user input.

Expand Down