From a1ef5a09c0281b0f2a65c18670e927ead61eb1b2 Mon Sep 17 00:00:00 2001 From: Robert Syme Date: Thu, 16 Jul 2020 12:08:52 -0400 Subject: [PATCH] Tiny typo fix --- src/procedural-macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/procedural-macros.md b/src/procedural-macros.md index eca9ddf50..3b020b155 100644 --- a/src/procedural-macros.md +++ b/src/procedural-macros.md @@ -92,7 +92,7 @@ pub fn make_answer(_item: TokenStream) -> TokenStream { } ``` -And then we use it a binary crate to print "42" to standard output. +And then we use it in a binary crate to print "42" to standard output. ```rust,ignore