mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
clippy
This commit is contained in:
parent
1a5e065055
commit
99ca3f545f
2 changed files with 3 additions and 1 deletions
|
@ -290,7 +290,7 @@ pub fn unwrap_suffixed_expression_apply_help<'a>(
|
|||
|
||||
// Any suffixed arguments will be innermost, therefore we unwrap those first
|
||||
let local_args = arena.alloc_slice_copy(apply_args);
|
||||
for (_, arg) in local_args.iter_mut().enumerate() {
|
||||
for arg in local_args.iter_mut() {
|
||||
match unwrap_suffixed_expression(arena, arg, maybe_def_pat) {
|
||||
Ok(new_arg) => {
|
||||
*arg = new_arg;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue