Misc: Fix various typos

Found via codespell
This commit is contained in:
Luz Paz
2025-04-27 12:05:49 -04:00
committed by Chris Hennes
parent b138276a15
commit 4619ab1bff
4 changed files with 9 additions and 9 deletions

View File

@@ -602,10 +602,10 @@ class SvgPathElement:
_d1 = pole1.distanceToLine(last_v, next_v)
_d2 = pole2.distanceToLine(last_v, next_v)
if _d1 < _tol and _d2 < _tol:
# poles and endpints are all on a line
# poles and endpoints are all on a line
if equals(last_v, next_v, self.precision):
# in this case we don't accept (nearly) zero
# distance betwen start and end (skip it).
# distance between start and end (skip it).
next_v = last_v
else:
seg = LineSegment(last_v, next_v).toShape()