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:
David Alber 2017-11-12 00:16:24 -08:00
parent ba8233d361
commit 72f77eaf47

View File

@ -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
}