about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorKevin Stock <kevin@kevinstock.org>2016-02-28 20:46:56 -0500
committerKevin Stock <kevin@kevinstock.org>2016-02-28 20:46:56 -0500
commit251f41905a5a715db030ebb3e1ba8b336b5aea38 (patch)
treeaa3bd0198fc83862eece4c1bdff814c1280349ea /src
parentd5558825b484b022fc00715b8bf441c2542ac4a2 (diff)
downloadrust-251f41905a5a715db030ebb3e1ba8b336b5aea38.tar.gz
rust-251f41905a5a715db030ebb3e1ba8b336b5aea38.zip
Fix typo (!#[no_std])
Diffstat (limited to 'src')
-rw-r--r--src/doc/book/using-rust-without-the-standard-library.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/using-rust-without-the-standard-library.md b/src/doc/book/using-rust-without-the-standard-library.md
index 2c7a097fe80..1179aebe54c 100644
--- a/src/doc/book/using-rust-without-the-standard-library.md
+++ b/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
 available via the [`core` crate](../core/). When we’re 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