]> git.lizzy.rs Git - rust.git/commitdiff
Fix typo (!#[no_std])
authorKevin Stock <kevin@kevinstock.org>
Mon, 29 Feb 2016 01:46:56 +0000 (20:46 -0500)
committerKevin Stock <kevin@kevinstock.org>
Mon, 29 Feb 2016 01:46:56 +0000 (20:46 -0500)
src/doc/book/using-rust-without-the-standard-library.md

index 2c7a097fe8045c4fc2f813b4d04e3caadd6b9329..1179aebe54c552462099174392100468f29a1608 100644 (file)
@@ -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