We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d555882 commit 251f419Copy full SHA for 251f419
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