Improve where_single_line help

This commit is contained in:
Remi Rampin 2018-03-31 18:51:41 -04:00
parent e6423cf4b1
commit 37ee9c20aa
2 changed files with 2 additions and 2 deletions

View file

@ -889,7 +889,7 @@ See also [`control_brace_style`](#control_brace_style).
## `where_single_line`
To force single line where layout
Forces the `where` clause to be laid out on a single line.
- **Default value**: `false`
- **Possible values**: `true`, `false`

View file

@ -61,7 +61,7 @@ create_config! {
struct_lit_single_line: bool, true, false,
"Put small struct literals on a single line";
fn_single_line: bool, false, false, "Put single-expression functions on a single line";
where_single_line: bool, false, false, "To force single line where layout";
where_single_line: bool, false, false, "Force where clauses to be on a single line";
// Imports
imports_indent: IndentStyle, IndentStyle::Visual, false, "Indent of imports";