Fix various source comment typos

Found via codespell
This commit is contained in:
Luz Paz
2025-07-25 08:11:12 -04:00
committed by Chris Hennes
parent f3e1e6cec0
commit 9efd70ffa4
3 changed files with 3 additions and 3 deletions

View File

@@ -465,7 +465,7 @@ class TestSketcherSolver(unittest.TestCase):
[Sketcher.Constraint("Block", c_idx), Sketcher.Constraint("Block", l_idx)]
)
expected_distance = radius / 2 # note that we don't set this in the constraint below!
# TODO: addConstraint(constraint) triggers a solve (for godd reasons) however, this way
# TODO: addConstraint(constraint) triggers a solve (for good reasons) however, this way
# one cannot add non-driving constraints. In contrast, addConstraint(list(constraint))
# does not solve automatically, thus we use this "overload".
# Much nicer would be an addConstraint(constraint, isReference=False), like addGeometry