Use heading for `std::prelude` and not `io::prelude`

The heading style for `std::prelude` is to be consistent with the
headings for `std` and `core`: `# The Rust Standard Library` and
`# The Rust Core Library`, respectively.
This commit is contained in:
Camelid 2021-01-05 17:52:24 -08:00
parent 4274ba40bd
commit 25a4964191
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
//! # The I/O Prelude
//! The I/O Prelude.
//!
//! The purpose of this module is to alleviate imports of many common I/O traits
//! by adding a glob import to the top of I/O heavy modules:

View File

@ -1,4 +1,4 @@
//! The Rust Prelude.
//! # The Rust Prelude
//!
//! Rust comes with a variety of things in its standard library. However, if
//! you had to manually import every single thing that you used, it would be