Skip to content

Commit 504ca6f

Browse files
committed
Auto merge of #31958 - teoryn:patch-3, r=nagisa
2 parents 776a0f2 + 251f419 commit 504ca6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/using-rust-without-the-standard-library.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Much of the functionality that’s exposed in the standard library is also
2525
available via the [`core` crate](../core/). When we’re using the standard
2626
library, Rust automatically brings `std` into scope, allowing you to use
2727
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
28+
`#![no_std]`, Rust will bring `core` into scope for you, as well as [its
2929
prelude](../core/prelude/v1/). This means that a lot of code will Just Work:
3030

3131
```rust

0 commit comments

Comments
 (0)