We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 776a0f2 + 251f419 commit 504ca6fCopy full SHA for 504ca6f
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
25
available via the [`core` crate](../core/). When we’re using the standard
26
library, Rust automatically brings `std` into scope, allowing you to use
27
its features without an explicit import. By the same token, when using
28
-`!#[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
29
prelude](../core/prelude/v1/). This means that a lot of code will Just Work:
30
31
```rust
0 commit comments