Skip to content

Commit a318bc8

Browse files
authored
Merge pull request #2580 from remram44/improve-where_single_line-help
Improve `where_single_line` help
2 parents d48cbed + 37ee9c2 commit a318bc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ See also [`control_brace_style`](#control_brace_style).
889889

890890
## `where_single_line`
891891

892-
To force single line where layout
892+
Forces the `where` clause to be laid out on a single line.
893893

894894
- **Default value**: `false`
895895
- **Possible values**: `true`, `false`

src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ create_config! {
6161
struct_lit_single_line: bool, true, false,
6262
"Put small struct literals on a single line";
6363
fn_single_line: bool, false, false, "Put single-expression functions on a single line";
64-
where_single_line: bool, false, false, "To force single line where layout";
64+
where_single_line: bool, false, false, "Force where clauses to be on a single line";
6565

6666
// Imports
6767
imports_indent: IndentStyle, IndentStyle::Visual, false, "Indent of imports";

0 commit comments

Comments
 (0)