From 7bdb680d7ee267ef51a547c6f43eab458be9b086 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 3 Apr 2025 13:32:54 +0200 Subject: [PATCH] Remove errant word in comment --- experiments/2025-03-18/src/extra/triangulate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/experiments/2025-03-18/src/extra/triangulate.rs b/experiments/2025-03-18/src/extra/triangulate.rs index 739f1df27..3cc8644b1 100644 --- a/experiments/2025-03-18/src/extra/triangulate.rs +++ b/experiments/2025-03-18/src/extra/triangulate.rs @@ -88,8 +88,8 @@ fn triangles(points: &[TriangulationPoint]) -> Vec<[TriangulationPoint; 3]> { } fn polygon(points: &[TriangulationPoint]) -> Polygon { - // This is a placeholder implementation that is probably not well-tested and - // probably doesn't support polygons with multiple holes. + // This is a placeholder implementation that is not well-tested and probably + // doesn't support polygons with multiple holes. let mut line_strings = VecDeque::new(); let mut current_line_string = Vec::new();