From 72f77eaf47c1a9cddd1da4f1132980035f5dae07 Mon Sep 17 00:00:00 2001 From: David Alber Date: Sun, 12 Nov 2017 00:16:24 -0800 Subject: [PATCH] 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. --- Configurations.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 }