We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cda631 commit eed1407Copy full SHA for eed1407
src/libstd/lib.rs
@@ -7,11 +7,9 @@
7
//! primitives](#primitives), [standard macros](#macros), [I/O] and
8
//! [multithreading], among [many other things][other].
9
//!
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
+//! `std` is available to all Rust crates by default. Therefore the
12
//! 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`].
+//! `std`, as in [`use std::env`].
15
16
//! # How to read this documentation
17
0 commit comments