Updating where_density = "Vertical"
example
The example for `where_density = "Vertical"` does not match the current output from rustfmt. This change corrects that. Fixes #2133.
This commit is contained in:
parent
ba8233d361
commit
72f77eaf47
@ -2228,10 +2228,12 @@ Density of a where clause.
|
||||
```rust
|
||||
trait Lorem {
|
||||
fn ipsum<Dolor>(dolor: Dolor) -> Sit
|
||||
where Dolor: Eq;
|
||||
where
|
||||
Dolor: Eq;
|
||||
|
||||
fn ipsum<Dolor>(dolor: Dolor) -> Sit
|
||||
where Dolor: Eq
|
||||
where
|
||||
Dolor: Eq,
|
||||
{
|
||||
// body
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user