Auto merge of #31958 - teoryn:patch-3, r=nagisa

This commit is contained in:
bors 2016-02-29 11:12:15 +00:00
commit 504ca6f422
1 changed files with 1 additions and 1 deletions

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