|
7 | 7 | //! primitives](#primitives), [standard macros](#macros), [I/O] and |
8 | 8 | //! [multithreading], among [many other things][other]. |
9 | 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 |
| 10 | +//! `std` is available to all Rust crates by default. Therefore the |
12 | 11 | //! 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`]. |
15 | 13 | //! |
16 | 14 | //! # How to read this documentation |
17 | 15 | //! |
|
157 | 155 | //! [TCP]: net/struct.TcpStream.html |
158 | 156 | //! [The Rust Prelude]: prelude/index.html |
159 | 157 | //! [UDP]: net/struct.UdpSocket.html |
160 | | -//! [`::std::env::args`]: env/fn.args.html |
161 | 158 | //! [`Arc`]: sync/struct.Arc.html |
162 | 159 | //! [owned slice]: boxed/index.html |
163 | 160 | //! [`Cell`]: cell/struct.Cell.html |
|
191 | 188 | //! [`thread`]: thread/index.html |
192 | 189 | //! [`use std::env`]: env/index.html |
193 | 190 | //! [`use`]: ../book/ch07-02-modules-and-use-to-control-scope-and-privacy.html#the-use-keyword-to-bring-paths-into-a-scope |
194 | | -//! [crate root]: ../book/ch07-01-packages-and-crates-for-making-libraries-and-executables.html |
195 | 191 | //! [crates.io]: https://crates.io |
196 | 192 | //! [deref-coercions]: ../book/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods |
197 | 193 | //! [files]: fs/struct.File.html |
|
0 commit comments