Merge pull request #2142 from davidalber/fix-where-density-examples
Updating `where_density = "Vertical"` example
This commit is contained in:
commit
ffe8c73cf6
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