Skip to content

Commit

Permalink
fix Comma in comment causes no formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rchaser53 committed Apr 29, 2019
1 parent d3ec460 commit 2c58b20
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/lists.rs
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ pub fn extract_post_comment(
post_snippet[1..].trim_matches(white_space)
} else if post_snippet.starts_with(separator) {
post_snippet[separator.len()..].trim_matches(white_space)
} else if post_snippet.ends_with(',') {
} else if post_snippet.ends_with(',') && !post_snippet.trim().starts_with("//") {
post_snippet[..(post_snippet.len() - 1)].trim_matches(white_space)
} else {
post_snippet
Expand Down
7 changes: 7 additions & 0 deletions tests/source/issue-3532.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
fn foo(a: T) {
match a {
1 => {}
0 => {}
// _ => panic!("doesn't format!"),
}
}
6 changes: 6 additions & 0 deletions tests/target/issue-3532.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
fn foo(a: T) {
match a {
1 => {}
0 => {} // _ => panic!("doesn't format!"),
}
}

0 comments on commit 2c58b20

Please sign in to comment.