diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_assists/src/assists/fill_match_arms.rs | 6 | ||||
-rw-r--r-- | crates/ra_assists/src/doc_tests/generated.rs | 2 | ||||
-rw-r--r-- | crates/ra_syntax/src/ast/make.rs | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/crates/ra_assists/src/assists/fill_match_arms.rs b/crates/ra_assists/src/assists/fill_match_arms.rs index 13b98d033..b6166f947 100644 --- a/crates/ra_assists/src/assists/fill_match_arms.rs +++ b/crates/ra_assists/src/assists/fill_match_arms.rs | |||
@@ -26,7 +26,7 @@ use crate::{Assist, AssistCtx, AssistId}; | |||
26 | // | 26 | // |
27 | // fn handle(action: Action) { | 27 | // fn handle(action: Action) { |
28 | // match action { | 28 | // match action { |
29 | // Action::Move{ distance } => (), | 29 | // Action::Move { distance } => (), |
30 | // Action::Stop => (), | 30 | // Action::Stop => (), |
31 | // } | 31 | // } |
32 | // } | 32 | // } |
@@ -154,7 +154,7 @@ mod tests { | |||
154 | A::Bs => (), | 154 | A::Bs => (), |
155 | A::Cs(_) => (), | 155 | A::Cs(_) => (), |
156 | A::Ds(_, _) => (), | 156 | A::Ds(_, _) => (), |
157 | A::Es{ x, y } => (), | 157 | A::Es { x, y } => (), |
158 | } | 158 | } |
159 | } | 159 | } |
160 | "#, | 160 | "#, |
@@ -207,7 +207,7 @@ mod tests { | |||
207 | 207 | ||
208 | fn foo(a: &mut A) { | 208 | fn foo(a: &mut A) { |
209 | match <|>a { | 209 | match <|>a { |
210 | A::Es{ x, y } => (), | 210 | A::Es { x, y } => (), |
211 | } | 211 | } |
212 | } | 212 | } |
213 | "#, | 213 | "#, |
diff --git a/crates/ra_assists/src/doc_tests/generated.rs b/crates/ra_assists/src/doc_tests/generated.rs index 2f36c3baa..43fa159d7 100644 --- a/crates/ra_assists/src/doc_tests/generated.rs +++ b/crates/ra_assists/src/doc_tests/generated.rs | |||
@@ -196,7 +196,7 @@ enum Action { Move { distance: u32 }, Stop } | |||
196 | 196 | ||
197 | fn handle(action: Action) { | 197 | fn handle(action: Action) { |
198 | match action { | 198 | match action { |
199 | Action::Move{ distance } => (), | 199 | Action::Move { distance } => (), |
200 | Action::Stop => (), | 200 | Action::Stop => (), |
201 | } | 201 | } |
202 | } | 202 | } |
diff --git a/crates/ra_syntax/src/ast/make.rs b/crates/ra_syntax/src/ast/make.rs index 00422ea91..76dad9155 100644 --- a/crates/ra_syntax/src/ast/make.rs +++ b/crates/ra_syntax/src/ast/make.rs | |||
@@ -77,7 +77,7 @@ pub fn tuple_struct_pat( | |||
77 | 77 | ||
78 | pub fn record_pat(path: ast::Path, pats: impl Iterator<Item = ast::Pat>) -> ast::RecordPat { | 78 | pub fn record_pat(path: ast::Path, pats: impl Iterator<Item = ast::Pat>) -> ast::RecordPat { |
79 | let pats_str = pats.map(|p| p.syntax().to_string()).join(", "); | 79 | let pats_str = pats.map(|p| p.syntax().to_string()).join(", "); |
80 | return from_text(&format!("{}{{ {} }}", path.syntax(), pats_str)); | 80 | return from_text(&format!("{} {{ {} }}", path.syntax(), pats_str)); |
81 | 81 | ||
82 | fn from_text(text: &str) -> ast::RecordPat { | 82 | fn from_text(text: &str) -> ast::RecordPat { |
83 | ast_from_text(&format!("fn f({}: ())", text)) | 83 | ast_from_text(&format!("fn f({}: ())", text)) |