Skip to content

Commit eed1407

Browse files
authored
Update std/lib.rs docs to reflect Rust 2018 usage
1 parent 3cda631 commit eed1407

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/libstd/lib.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@
77
//! primitives](#primitives), [standard macros](#macros), [I/O] and
88
//! [multithreading], among [many other things][other].
99
//!
10-
//! `std` is available to all Rust crates by default, just as if each one
11-
//! contained an `extern crate std;` import at the [crate root]. Therefore the
10+
//! `std` is available to all Rust crates by default. Therefore the
1211
//! standard library can be accessed in [`use`] statements through the path
13-
//! `std`, as in [`use std::env`], or in expressions through the absolute path
14-
//! `::std`, as in [`::std::env::args`].
12+
//! `std`, as in [`use std::env`].
1513
//!
1614
//! # How to read this documentation
1715
//!

0 commit comments

Comments
 (0)