mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-22 09:31:43 +00:00
Fix clippy
This commit is contained in:
parent
3a6225c354
commit
9b9b6d39f3
6 changed files with 10 additions and 11 deletions
|
@ -97,7 +97,7 @@ fn format_expr_only(
|
|||
},
|
||||
loc_args,
|
||||
) => {
|
||||
fmt_apply(&loc_expr, loc_args.items, indent, buf);
|
||||
fmt_apply(loc_expr, loc_args.items, indent, buf);
|
||||
}
|
||||
Expr::PncApply(loc_expr, loc_args) => {
|
||||
fmt_pnc_apply(loc_expr, loc_args, indent, buf);
|
||||
|
|
|
@ -457,6 +457,7 @@ fn fmt_pattern_only(
|
|||
}
|
||||
}
|
||||
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub fn pattern_fmt_apply(
|
||||
buf: &mut Buf<'_>,
|
||||
func: Pattern<'_>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue