Fix word in comment

This commit is contained in:
Hanno Braun 2024-03-22 14:37:14 +01:00
parent ae4b1b8a66
commit bafd117b1c

View File

@ -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;