Skip to content

Commit c7a78c7

Browse files
authored
Rollup merge of #40071 - tomwhoiscontrary:pr-lets-apostrophes, r=GuillaumeGomez
Correct another typo in procedural macros chapter of the Book. Another (and the only remaining) instance of the lets/let's mistake fixed in c8292fc / 36b00cf. r? @steveklabnik
2 parents 1166995 + 7c52cad commit c7a78c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/src/procedural-macros.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ a representation of our type (which can be either a `struct` or an `enum`).
170170
Check out the [docs](https://docs.rs/syn/0.10.5/syn/struct.MacroInput.html),
171171
there is some useful information there. We are able to get the name of the
172172
type using `ast.ident`. The `quote!` macro lets us write up the Rust code
173-
that we wish to return and convert it into `Tokens`. `quote!` let's us use some
173+
that we wish to return and convert it into `Tokens`. `quote!` lets us use some
174174
really cool templating mechanics; we simply write `#name` and `quote!` will
175175
replace it with the variable named `name`. You can even do some repetition
176176
similar to regular macros work. You should check out the

0 commit comments

Comments
 (0)