rust/crates/ra_ide_api_light
Ville Penttinen 40add5de9a Fix join_lines not adding a comma after join_single_expr_block in match arm
We will also remove optional whitespace between the expression and the comma.

e.g.

```rust
fn foo() {
    let x = (<|>{
       4
    }   ,); // NOTE: whitespace
}
```

becomes

```rust
fn foo() {
    let x = (<|>4,);
}
```
2019-02-21 17:55:14 +02:00
..
src Fix join_lines not adding a comma after join_single_expr_block in match arm 2019-02-21 17:55:14 +02:00
Cargo.toml what goes bump in the night? 2019-02-12 11:03:28 -05:00