From eb0f9f81f02d6d4c849e7361a47eb62bead24ec7 Mon Sep 17 00:00:00 2001 From: Andrew Barchuk Date: Fri, 12 Feb 2016 21:40:02 +0200 Subject: [PATCH] Remove unnecessary article --- src/doc/book/using-rust-without-the-standard-library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 59182e1a4ef..2c7a097fe80 100644 --- a/src/doc/book/using-rust-without-the-standard-library.md +++ b/src/doc/book/using-rust-without-the-standard-library.md @@ -11,7 +11,7 @@ don’t want to use the standard library via an attribute: `#![no_std]`. > For details on binaries without the standard library, see [the nightly > chapter on `#![no_std]`](no-stdlib.html) -To use `#![no_std]`, add a it to your crate root: +To use `#![no_std]`, add it to your crate root: ```rust #![no_std]