From 94a1b3d7937f8ffdfc83f7614c98dcb420ce3cb8 Mon Sep 17 00:00:00 2001 From: jan Date: Mon, 14 Oct 2024 17:25:01 -0700 Subject: [PATCH] cleanup comment --- masque/shapes/polygon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/shapes/polygon.py b/masque/shapes/polygon.py index 1f72ea2..cbcbe63 100644 --- a/masque/shapes/polygon.py +++ b/masque/shapes/polygon.py @@ -20,7 +20,7 @@ class Polygon(Shape): A polygon, consisting of a bunch of vertices (Nx2 ndarray) which specify an implicitly-closed boundary, and an offset. - Note that the setter for `Polygon.vertices` may creates a copy of the + Note that the setter for `Polygon.vertices` creates a copy of the passed vertex coordinates. A `normalized_form(...)` is available, but can be quite slow with lots of vertices.