From 40db2af18ebb2827590087b51cc1216045ba56a7 Mon Sep 17 00:00:00 2001 From: Phil Ellison Date: Sun, 18 Jun 2017 09:34:24 +0100 Subject: [PATCH] Update names on where_style code snippets --- Configurations.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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`