fix(rust): indentation in multi-line for expression

Fix indentation when the for loop expression is on multiple lines

Example:

previous:

```rust
for (
    abc,
    def
) in thing.iter() {
        // ...
    }
```
new:

```rust
for (
    abc,
    def
) in thing.iter() {
    // ...
}
```
This commit is contained in:
ganhaque 2024-04-03 19:40:50 -05:00 committed by Christian Clason
parent 4d4b63692f
commit 5489e2150f

View file

@ -3,7 +3,6 @@
(struct_item)
(enum_item)
(impl_item)
(for_expression)
(struct_expression)
(struct_pattern)
(tuple_struct_pattern)