Update std/lib.rs docs to reflect Rust 2018 usage

This commit is contained in:
Jacob Kiesel 2018-12-28 14:15:55 -07:00 committed by GitHub
parent 3cda631ea4
commit eed140792d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,11 +7,9 @@
//! primitives](#primitives), [standard macros](#macros), [I/O] and
//! [multithreading], among [many other things][other].
//!
//! `std` is available to all Rust crates by default, just as if each one
//! contained an `extern crate std;` import at the [crate root]. Therefore the
//! `std` is available to all Rust crates by default. Therefore the
//! standard library can be accessed in [`use`] statements through the path
//! `std`, as in [`use std::env`], or in expressions through the absolute path
//! `::std`, as in [`::std::env::args`].
//! `std`, as in [`use std::env`].
//!
//! # How to read this documentation
//!