From bafd117b1cc67377663c1470d4ef5a965bb628b0 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 22 Mar 2024 14:37:14 +0100 Subject: [PATCH] Fix word in comment --- crates/fj-core/src/objects/kinds/half_edge.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-core/src/objects/kinds/half_edge.rs b/crates/fj-core/src/objects/kinds/half_edge.rs index 6705961c3..5944ba109 100644 --- a/crates/fj-core/src/objects/kinds/half_edge.rs +++ b/crates/fj-core/src/objects/kinds/half_edge.rs @@ -80,7 +80,7 @@ impl HalfEdge { /// Compute the surface position where the half-edge starts pub fn start_position(&self) -> Point<2> { // Computing the surface position from the curve position is fine. - // `Edge` "owns" its start position. There is no competing code that + // `HalfEdge` "owns" its start position. There is no competing code that // could compute the surface position from slightly different data. let [start, _] = self.boundary.inner;