From 6ab727e6fffc0e236932e4c55cd20f8f09f687b0 Mon Sep 17 00:00:00 2001 From: Seiichi Uchida Date: Tue, 1 Aug 2017 22:20:04 +0900 Subject: [PATCH] Set where_density default value to Density::Vertical --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 7ffe141e6c1..65292d60b26 100644 --- a/src/config.rs +++ b/src/config.rs @@ -539,7 +539,7 @@ create_config! { // 1. Should we at least try to put the where clause on the same line as the rest of the // function decl? // 2. Currently options `Tall` and `Vertical` produce the same output. - where_density: Density, Density::CompressedIfEmpty, "Density of a where clause"; + where_density: Density, Density::Vertical, "Density of a where clause"; where_layout: ListTactic, ListTactic::Vertical, "Element layout inside a where clause"; where_pred_indent: IndentStyle, IndentStyle::Visual, "Indentation style of a where predicate";