Merge pull request #2142 from davidalber/fix-where-density-examples

Updating `where_density = "Vertical"` example
This commit is contained in:
Seiichi Uchida 2017-11-12 20:20:17 +09:00 committed by GitHub
commit ffe8c73cf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
}