We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6ac7bf5 + e998666 commit da703a8Copy full SHA for da703a8
src/doc/book/src/procedural-macros.md
@@ -128,7 +128,7 @@ pub fn hello_world(input: TokenStream) -> TokenStream {
128
So there is a lot going on here. We have introduced two new crates: [`syn`] and
129
[`quote`]. As you may have noticed, `input: TokenSteam` is immediately converted
130
to a `String`. This `String` is a string representation of the Rust code for which
131
-we are deriving `HelloWorld` for. At the moment, the only thing you can do with a
+we are deriving `HelloWorld`. At the moment, the only thing you can do with a
132
`TokenStream` is convert it to a string. A richer API will exist in the future.
133
134
So what we really need is to be able to _parse_ Rust code into something
0 commit comments