aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/src/ast/edit.rs
diff options
context:
space:
mode:
authorAleksei Sidorov <[email protected]>2020-09-04 20:58:50 +0100
committerAleksei Sidorov <[email protected]>2020-09-04 20:58:50 +0100
commite1b8d836a9b64169a8337be674c78cac20940b92 (patch)
treea0b154fa66167339aca76e434523935e97a9e593 /crates/syntax/src/ast/edit.rs
parentef0a1b2e58b6047223a68f700ef16fcc21f9f208 (diff)
Remove unnecessary comma
Diffstat (limited to 'crates/syntax/src/ast/edit.rs')
-rw-r--r--crates/syntax/src/ast/edit.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/syntax/src/ast/edit.rs b/crates/syntax/src/ast/edit.rs
index 5b5454c72..8b1c65dd6 100644
--- a/crates/syntax/src/ast/edit.rs
+++ b/crates/syntax/src/ast/edit.rs
@@ -492,7 +492,6 @@ impl ast::GenericParamList {
492 to_insert.push(space.into()); 492 to_insert.push(space.into());
493 } 493 }
494 to_insert.push(item.syntax().clone().into()); 494 to_insert.push(item.syntax().clone().into());
495 to_insert.push(make::token(T![,]).into());
496 495
497 macro_rules! after_l_angle { 496 macro_rules! after_l_angle {
498 () => {{ 497 () => {{