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();