Fix word in doc comment

This commit is contained in:
Hanno Braun 2024-03-22 14:36:52 +01:00
parent 7fc1d406eb
commit ae4b1b8a66

View File

@ -77,7 +77,7 @@ impl HalfEdge {
&self.start_vertex &self.start_vertex
} }
/// Compute the surface position where the edge starts /// Compute the surface position where the half-edge starts
pub fn start_position(&self) -> Point<2> { pub fn start_position(&self) -> Point<2> {
// Computing the surface position from the curve position is fine. // Computing the surface position from the curve position is fine.
// `Edge` "owns" its start position. There is no competing code that // `Edge` "owns" its start position. There is no competing code that