about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHiroki Kobayashi <silentkiddie-2012@yahoo.co.jp>2017-02-28 00:47:24 +0900
committerGitHub <noreply@github.com>2017-02-28 00:47:24 +0900
commite998666a776dc73bd7c1c2ca7edde8ece48dfd36 (patch)
treefacab3d3f3a697e2249bb4f9c396d3e16b29b99d /src
parentcb1f6492dd8bb3fcb7e76e9d2bc92450eee7690b (diff)
downloadrust-e998666a776dc73bd7c1c2ca7edde8ece48dfd36.tar.gz
rust-e998666a776dc73bd7c1c2ca7edde8ece48dfd36.zip
Remove unnecessary "for"
Diffstat (limited to 'src')
-rw-r--r--src/doc/book/src/procedural-macros.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/src/procedural-macros.md b/src/doc/book/src/procedural-macros.md
index 4f5a6a7c033..e02b5a6cdd7 100644
--- a/src/doc/book/src/procedural-macros.md
+++ b/src/doc/book/src/procedural-macros.md
@@ -128,7 +128,7 @@ pub fn hello_world(input: TokenStream) -> TokenStream {
 So there is a lot going on here. We have introduced two new crates: [`syn`] and
 [`quote`]. As you may have noticed, `input: TokenSteam` is immediately converted
 to a `String`. This `String` is a string representation of the Rust code for which
-we are deriving `HelloWorld` for. At the moment, the only thing you can do with a
+we are deriving `HelloWorld`. At the moment, the only thing you can do with a
 `TokenStream` is convert it to a string. A richer API will exist in the future.
 
 So what we really need is to be able to _parse_ Rust code into something