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