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
1 changed files with 4 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue