From 938fed7f0f28b68a16d8938221d1bc59e697ffa1 Mon Sep 17 00:00:00 2001 From: Luxko Date: Wed, 15 Feb 2017 03:53:27 -0600 Subject: [PATCH] Update procedural-macros.md Fix typo --- src/doc/book/src/procedural-macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;