Remove errant word in comment

This commit is contained in:
Hanno Braun 2025-04-03 13:32:54 +02:00
parent bf4c79f066
commit 7bdb680d7e

View File

@ -88,8 +88,8 @@ fn triangles(points: &[TriangulationPoint]) -> Vec<[TriangulationPoint; 3]> {
} }
fn polygon(points: &[TriangulationPoint]) -> Polygon { fn polygon(points: &[TriangulationPoint]) -> Polygon {
// This is a placeholder implementation that is probably not well-tested and // This is a placeholder implementation that is not well-tested and probably
// probably doesn't support polygons with multiple holes. // doesn't support polygons with multiple holes.
let mut line_strings = VecDeque::new(); let mut line_strings = VecDeque::new();
let mut current_line_string = Vec::new(); let mut current_line_string = Vec::new();