Fix typo (!#[no_std])

This commit is contained in:
Kevin Stock 2016-02-28 20:46:56 -05:00
parent d5558825b4
commit 251f41905a

View file

@ -25,7 +25,7 @@ Much of the functionality thats exposed in the standard library is also
available via the [`core` crate](../core/). When were 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