rustfmt: Use now config option fn_params_layout

`rustfmt` warns:

 Warning: the `fn_args_layout` option is deprecated. Use
 `fn_params_layout`. instead

As suggested, use now config option `fn_params_layout`.
This commit is contained in:
Tobin C. Harding 2023-05-10 08:16:33 +10:00
parent be2999ad58
commit 7467b23a8d
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ enum_discrim_align_threshold = 0
match_arm_blocks = false # Default true match_arm_blocks = false # Default true
match_arm_leading_pipes = "Never" match_arm_leading_pipes = "Never"
force_multiline_blocks = false force_multiline_blocks = false
fn_args_layout = "Tall" fn_params_layout = "Tall"
brace_style = "SameLineWhere" brace_style = "SameLineWhere"
control_brace_style = "AlwaysSameLine" control_brace_style = "AlwaysSameLine"
trailing_semicolon = true trailing_semicolon = true