about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLuxko <liarluxlux@gmail.com>2017-02-15 03:53:27 -0600
committerGitHub <noreply@github.com>2017-02-15 03:53:27 -0600
commit938fed7f0f28b68a16d8938221d1bc59e697ffa1 (patch)
tree7f26a7b431863ac64e3f31ba5c0512f24a2d1316
parent025c328bf5ab336ff708e62a59292298dc1bc089 (diff)
downloadrust-938fed7f0f28b68a16d8938221d1bc59e697ffa1.tar.gz
rust-938fed7f0f28b68a16d8938221d1bc59e697ffa1.zip
Update procedural-macros.md
Fix typo
-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 d286c3b7bdc..6c4700f9305 100644
--- a/src/doc/book/src/procedural-macros.md
+++ b/src/doc/book/src/procedural-macros.md
@@ -99,7 +99,7 @@ created, we'll add it to our toml:
 hello-world-derive = { path = "hello-world-derive" }
 ```
 
-As for our the source of our `hello-world-derive` crate, here's an example:
+As for the source of our `hello-world-derive` crate, here's an example:
 
 ```rust,ignore
 extern crate proc_macro;