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

@@ -68,7 +68,7 @@ class BIM_Layers:
from PySide import QtGui
# chech if the dialog is running)
# check if the dialog is running)
if getattr(self, "dialog", None):
return

View File

@@ -205,7 +205,7 @@ def export(
"""Exports objects to an html file.
Returns:
bool: True if export was successful, False if not (particulary,
bool: True if export was successful, False if not (particularly,
False if no template was available).
"""

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