diff --git a/Configurations.md b/Configurations.md index b139eff7815..489b7e6cc50 100644 --- a/Configurations.md +++ b/Configurations.md @@ -1842,19 +1842,6 @@ Overall strategy for where clauses - **Default value**: `"Rfc"` - **Possible values**: `"Rfc"`, `"Legacy"` -#### `"Default"`: - -```rust -fn lorem() -> T - where Ipsum: Eq, - Dolor: Eq, - Sit: Eq, - Amet: Eq -{ - // body -} -``` - #### `"Rfc"`: ```rust @@ -1869,6 +1856,19 @@ where } ``` +#### `"Legacy"`: + +```rust +fn lorem() -> T + where Ipsum: Eq, + Dolor: Eq, + Sit: Eq, + Amet: Eq +{ + // body +} +``` + See also: [`where_density`](#where_density), [`where_layout`](#where_layout), [`where_pred_indent`](#where_pred_indent). ## `wrap_comments`