Skip to content

Commit 55ae672

Browse files
authored
Update upolygon/simplify_polygon.pyx
1 parent edd6302 commit 55ae672

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

upolygon/simplify_polygon.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cdef perpendicular_distance(float px, float py, float ax, float ay, float bx, fl
1515
@cython.nonecheck(False)
1616
def simplify_single_polygon(list path, float epsilon):
1717
# Note that we are using an iterative version of this algorithm
18-
# instread of the classical recursive to prevent reaching python's
18+
# instead of the classical recursive to prevent reaching python's
1919
# max recursion.
2020
cdef int length = len(path) // 2
2121
cdef int startIndex = 0

0 commit comments

Comments
 (0)