File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ been enough to push the nightly users to stable as well.
27
27
28
28
These large projects, however, are often the face of Rust to external users.
29
29
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
31
31
thought process creates a culture of "well to be serious you require nightly"
32
32
and a general feeling that Rust is not "production ready".
33
33
@@ -207,8 +207,8 @@ pub fn double(input: TokenStream) -> TokenStream {
207
207
let source = input . to_string ();
208
208
209
209
// 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.
212
212
let source = derive_double (& source );
213
213
214
214
// Parse this back to a token stream and return it
You can’t perform that action at this time.
0 commit comments