From f7f52fa687448692abf5dca28e7ca8f319e4a9bf Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 20 Mar 2024 12:27:50 +0100 Subject: [PATCH] Update argument names --- crates/fj-core/src/validate/shell.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/fj-core/src/validate/shell.rs b/crates/fj-core/src/validate/shell.rs index 48bf7a8cb..133b572a2 100644 --- a/crates/fj-core/src/validate/shell.rs +++ b/crates/fj-core/src/validate/shell.rs @@ -430,8 +430,8 @@ mod tests { |cycle, core| { cycle.update_half_edge( cycle.half_edges().nth_circular(0), - |edge, core| { - [edge + |half_edge, core| { + [half_edge .update_path( |path| path.reverse(), core, @@ -508,8 +508,8 @@ mod tests { |cycle, core| { cycle.update_half_edge( cycle.half_edges().nth_circular(0), - |edge, core| { - [edge.update_curve( + |half_edge, core| { + [half_edge.update_curve( |_, _| Curve::new(), core, )]