Skip to content

Commit c8f9ee9

Browse files
committed
Merge #571: rustfmt: Change fn_args_layout to fn_params_layout
82b836e rustfmt: Change fn_args_layout to fn_params_layout (Tobin C. Harding) Pull request description: Running `cargo +nightly fmt` emits a bunch of warnings of form: Warning: the `fn_args_layout` option is deprecated. Use `fn_params_layout`. instead As suggested change the `fn_args_layout` option to `fn_params_layout`. ACKs for top commit: apoelstra: ACK 82b836e Tree-SHA512: 106a480c641b22e370145409bf2286de3f67861dcfada0b9c8ad47117cffb06bd49c423365868b4fae36c5bfda39ca117dbe5339beb35de820622fe56f238759
2 parents 1b2d437 + 82b836e commit c8f9ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ enum_discrim_align_threshold = 0
4444
match_arm_blocks = true
4545
match_arm_leading_pipes = "Never"
4646
force_multiline_blocks = false
47-
fn_args_layout = "Tall"
47+
fn_params_layout = "Tall"
4848
brace_style = "SameLineWhere"
4949
control_brace_style = "AlwaysSameLine"
5050
trailing_semicolon = true

0 commit comments

Comments
 (0)