Skip to content

Commit 24c8a90

Browse files
authored
Merge pull request #1747 from untitaker/patch-1
Fix typos in RFC #1681
2 parents 9216e4f + 058d721 commit 24c8a90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

text/1681-macros-1.1.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ been enough to push the nightly users to stable as well.
2727

2828
These large projects, however, are often the face of Rust to external users.
2929
Common knowledge is that fast serialization is done using serde, but to others
30-
this just sounds likes "fast Rust needs nightly". Over time this persistent
30+
this just sounds like "fast Rust needs nightly". Over time this persistent
3131
thought process creates a culture of "well to be serious you require nightly"
3232
and a general feeling that Rust is not "production ready".
3333

@@ -207,8 +207,8 @@ pub fn double(input: TokenStream) -> TokenStream {
207207
let source = input.to_string();
208208

209209
// Parse `source` for struct/enum declaration, and then build up some new
210-
// source code representing representing a number of items in the
211-
// implementation of the `Double` trait for the struct/enum in question.
210+
// source code representing a number of items in the implementation of
211+
// the `Double` trait for the struct/enum in question.
212212
let source = derive_double(&source);
213213

214214
// Parse this back to a token stream and return it

0 commit comments

Comments
 (0)