Update argument names

This commit is contained in:
Hanno Braun 2024-03-20 12:27:50 +01:00
parent 8bd530daf8
commit f7f52fa687

View File

@ -430,8 +430,8 @@ mod tests {
|cycle, core| { |cycle, core| {
cycle.update_half_edge( cycle.update_half_edge(
cycle.half_edges().nth_circular(0), cycle.half_edges().nth_circular(0),
|edge, core| { |half_edge, core| {
[edge [half_edge
.update_path( .update_path(
|path| path.reverse(), |path| path.reverse(),
core, core,
@ -508,8 +508,8 @@ mod tests {
|cycle, core| { |cycle, core| {
cycle.update_half_edge( cycle.update_half_edge(
cycle.half_edges().nth_circular(0), cycle.half_edges().nth_circular(0),
|edge, core| { |half_edge, core| {
[edge.update_curve( [half_edge.update_curve(
|_, _| Curve::new(), |_, _| Curve::new(),
core, core,
)] )]