diff --git a/src/doc/book/using-rust-without-the-standard-library.md b/src/doc/book/using-rust-without-the-standard-library.md index 2c7a097fe8045..1179aebe54c55 100644 --- a/src/doc/book/using-rust-without-the-standard-library.md +++ b/src/doc/book/using-rust-without-the-standard-library.md @@ -25,7 +25,7 @@ Much of the functionality that’s exposed in the standard library is also available via the [`core` crate](../core/). When we’re using the standard library, Rust automatically brings `std` into scope, allowing you to use its features without an explicit import. By the same token, when using -`!#[no_std]`, Rust will bring `core` into scope for you, as well as [its +`#![no_std]`, Rust will bring `core` into scope for you, as well as [its prelude](../core/prelude/v1/). This means that a lot of code will Just Work: ```rust