From 7bfa935f28588a801ad317696af7ba09038aa193 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 11 Sep 2016 23:10:29 +0200 Subject: [PATCH 1/2] Fix a typo in RFC #1681 --- text/1681-macros-1.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/1681-macros-1.1.md b/text/1681-macros-1.1.md index 9a50c591897..fd9b18a54eb 100644 --- a/text/1681-macros-1.1.md +++ b/text/1681-macros-1.1.md @@ -27,7 +27,7 @@ been enough to push the nightly users to stable as well. These large projects, however, are often the face of Rust to external users. Common knowledge is that fast serialization is done using serde, but to others -this just sounds likes "fast Rust needs nightly". Over time this persistent +this just sounds like "fast Rust needs nightly". Over time this persistent thought process creates a culture of "well to be serious you require nightly" and a general feeling that Rust is not "production ready". From 058d72137fa235fec290ba5e776e0af4bc90a2e6 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 11 Sep 2016 23:14:43 +0200 Subject: [PATCH 2/2] Fix a duplicated word --- text/1681-macros-1.1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text/1681-macros-1.1.md b/text/1681-macros-1.1.md index fd9b18a54eb..0a0aa483f9b 100644 --- a/text/1681-macros-1.1.md +++ b/text/1681-macros-1.1.md @@ -207,8 +207,8 @@ pub fn double(input: TokenStream) -> TokenStream { let source = input.to_string(); // Parse `source` for struct/enum declaration, and then build up some new - // source code representing representing a number of items in the - // implementation of the `Double` trait for the struct/enum in question. + // source code representing a number of items in the implementation of + // the `Double` trait for the struct/enum in question. let source = derive_double(&source); // Parse this back to a token stream and return it