Skip to content

Commit

Permalink
Update argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Mar 18, 2024
1 parent 5f38230 commit 4d1c0c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/algorithms/approx/cycle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ impl Approx for (&Cycle, &SurfaceGeometry) {
let half_edges = cycle
.half_edges()
.iter()
.map(|edge| {
(edge.deref(), surface)
.map(|half_edge| {
(half_edge.deref(), surface)
.approx_with_cache(tolerance, cache, core)
})
.collect();
Expand Down

0 comments on commit 4d1c0c3

Please sign in to comment.