about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-02-15 23:48:18 -0500
committerGitHub <noreply@github.com>2017-02-15 23:48:18 -0500
commitce9b4783929c4df3916b8f5386f287d71b089267 (patch)
treefed3b4fd1c0245fc282e83fb159e44f80a7bc219
parent35bf74b0ced2c12247737dc68360f6a9f40a4127 (diff)
parent938fed7f0f28b68a16d8938221d1bc59e697ffa1 (diff)
downloadrust-ce9b4783929c4df3916b8f5386f287d71b089267.tar.gz
rust-ce9b4783929c4df3916b8f5386f287d71b089267.zip
Rollup merge of #39840 - DaseinPhaos:patch-2, r=frewsxcv
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;