2076: use correct spacing for enum pattern r=matklad a=matklad



Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2019-10-26 15:04:26 +00:00 committed by GitHub
commit 2f7d1f10c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -26,7 +26,7 @@ use crate::{Assist, AssistCtx, AssistId};
//
// fn handle(action: Action) {
// match action {
// Action::Move{ distance } => (),
// Action::Move { distance } => (),
// Action::Stop => (),
// }
// }
@ -154,7 +154,7 @@ mod tests {
A::Bs => (),
A::Cs(_) => (),
A::Ds(_, _) => (),
A::Es{ x, y } => (),
A::Es { x, y } => (),
}
}
"#,
@ -207,7 +207,7 @@ mod tests {
fn foo(a: &mut A) {
match <|>a {
A::Es{ x, y } => (),
A::Es { x, y } => (),
}
}
"#,

View file

@ -196,7 +196,7 @@ enum Action { Move { distance: u32 }, Stop }
fn handle(action: Action) {
match action {
Action::Move{ distance } => (),
Action::Move { distance } => (),
Action::Stop => (),
}
}

View file

@ -77,7 +77,7 @@ pub fn tuple_struct_pat(
pub fn record_pat(path: ast::Path, pats: impl Iterator<Item = ast::Pat>) -> ast::RecordPat {
let pats_str = pats.map(|p| p.syntax().to_string()).join(", ");
return from_text(&format!("{}{{ {} }}", path.syntax(), pats_str));
return from_text(&format!("{} {{ {} }}", path.syntax(), pats_str));
fn from_text(text: &str) -> ast::RecordPat {
ast_from_text(&format!("fn f({}: ())", text))

View file

@ -191,7 +191,7 @@ enum Action { Move { distance: u32 }, Stop }
fn handle(action: Action) {
match action {
Action::Move{ distance } => (),
Action::Move { distance } => (),
Action::Stop => (),
}
}