Skip to content

Commit

Permalink
Improve where_single_line help
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Mar 31, 2018
1 parent e6423cf commit 37ee9c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Configurations.md
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion src/config/mod.rs
Expand Up @@ -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";
Expand Down

0 comments on commit 37ee9c2

Please sign in to comment.