diff --git a/Configurations.md b/Configurations.md index 68ff64cffb9b..337b16000612 100644 --- a/Configurations.md +++ b/Configurations.md @@ -2228,10 +2228,12 @@ Density of a where clause. ```rust trait Lorem { fn ipsum(dolor: Dolor) -> Sit - where Dolor: Eq; + where + Dolor: Eq; fn ipsum(dolor: Dolor) -> Sit - where Dolor: Eq + where + Dolor: Eq, { // body }