Fix various typos

This commit is contained in:
luzpaz
2024-08-11 13:16:31 +00:00
committed by Chris Hennes
parent 959fa6b628
commit 0a9a7bd24e
4 changed files with 4 additions and 4 deletions

View File

@@ -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(),

View File

@@ -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;

View File

@@ -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;

View File

@@ -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)