diff --git a/src/Base/DualNumber.h b/src/Base/DualNumber.h index 0b5224a998..0a20416be4 100644 --- a/src/Base/DualNumber.h +++ b/src/Base/DualNumber.h @@ -31,7 +31,7 @@ namespace Base /** - * @brief Dual Numbers aer 2-part numbers like complex numbers, but different + * @brief Dual Numbers are 2-part numbers like complex numbers, but different * algebra. They are denoted as a + b*eps, where eps^2 = 0. eps, the nilpotent, * is like imaginary unit of complex numbers. The neat utility of dual numbers * is that if you use them instead of normal numbers in a function like sin(), diff --git a/src/Gui/Stylesheets/FreeCAD Dark.qss b/src/Gui/Stylesheets/FreeCAD Dark.qss index df4c223426..aece651954 100644 --- a/src/Gui/Stylesheets/FreeCAD Dark.qss +++ b/src/Gui/Stylesheets/FreeCAD Dark.qss @@ -2788,7 +2788,7 @@ QWidget#thumbnailWidget[state="pressed"] { padding-right: 12px; } -/* Below is a fix for identation in properties, but this is a QT 6 bug only and so is disabled since Windows is as I write this still on QT 5. */ +/* Below is a fix for indentation in properties, but this is a QT 6 bug only and so is disabled since Windows is as I write this still on QT 5. */ /* QTreeView::item:selected:active#groupsTreeView { background-color: @ThemeAccentColor1; margin-left:-8px; diff --git a/src/Gui/Stylesheets/FreeCAD Light.qss b/src/Gui/Stylesheets/FreeCAD Light.qss index d22cfc803d..05d189a1d6 100644 --- a/src/Gui/Stylesheets/FreeCAD Light.qss +++ b/src/Gui/Stylesheets/FreeCAD Light.qss @@ -2784,7 +2784,7 @@ QWidget#thumbnailWidget[state="pressed"] { padding-right: 12px; } -/* Below is a fix for identation in properties, but this is a QT 6 bug only and so is disabled since Windows is as I write this still on QT 5. */ +/* Below is a fix for indentation in properties, but this is a QT 6 bug only and so is disabled since Windows is as I write this still on QT 5. */ /* QTreeView::item:selected:active#groupsTreeView { background-color: @ThemeAccentColor1; margin-left:-8px; diff --git a/src/Mod/Draft/draftgeoutils/faces.py b/src/Mod/Draft/draftgeoutils/faces.py index 3643ceb4db..60b8a8faa5 100644 --- a/src/Mod/Draft/draftgeoutils/faces.py +++ b/src/Mod/Draft/draftgeoutils/faces.py @@ -187,7 +187,7 @@ def bind(w1, w2, per_segment=False): if len(faces) > 1 : faces_fused = faces[0].fuse(faces[1:]).removeSplitter().Faces[0] faces_fused_list.append(faces_fused) - # faces might be emply list [], see above; skip if empty + # faces might be empty list [], see above; skip if empty elif faces: faces_fused_list.append(faces[0]) # Only 1 face return Part.Compound(faces_fused_list)