We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea8c629 commit c8292fcCopy full SHA for c8292fc
src/doc/book/src/procedural-macros.md
@@ -169,7 +169,7 @@ So this is where quotes comes in. The `ast` argument is a struct that gives us
169
a representation of our type (which can be either a `struct` or an `enum`).
170
Check out the [docs](https://docs.rs/syn/0.10.5/syn/struct.MacroInput.html),
171
there is some useful information there. We are able to get the name of the
172
-type using `ast.ident`. The `quote!` macro let's us write up the Rust code
+type using `ast.ident`. The `quote!` macro let us write up the Rust code
173
that we wish to return and convert it into `Tokens`. `quote!` let's us use some
174
really cool templating mechanics; we simply write `#name` and `quote!` will
175
replace it with the variable named `name`. You can even do some repetition
0 commit comments