From: Kevin Stock Date: Mon, 29 Feb 2016 01:46:56 +0000 (-0500) Subject: Fix typo (!#[no_std]) X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=251f41905a5a715db030ebb3e1ba8b336b5aea38;p=rust.git Fix typo (!#[no_std]) --- 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 2c7a097fe80..1179aebe54c 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