Skip to content

Commit da703a8

Browse files
authored
Rollup merge of rust-lang#40124 - koba-e964:patch-1, r=steveklabnik
Remove unnecessary "for"
2 parents 6ac7bf5 + e998666 commit da703a8

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
@@ -128,7 +128,7 @@ pub fn hello_world(input: TokenStream) -> TokenStream {
128128
So there is a lot going on here. We have introduced two new crates: [`syn`] and
129129
[`quote`]. As you may have noticed, `input: TokenSteam` is immediately converted
130130
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
131+
we are deriving `HelloWorld`. At the moment, the only thing you can do with a
132132
`TokenStream` is convert it to a string. A richer API will exist in the future.
133133

134134
So what we really need is to be able to _parse_ Rust code into something

0 commit comments

Comments
 (0)