From 09a965d59586c1026546153724c0f7151437190e Mon Sep 17 00:00:00 2001 From: luzpaz Date: Mon, 21 Aug 2023 17:48:17 +0000 Subject: [PATCH] Fix typos --- src/App/Link.cpp | 4 ++-- src/Mod/Fem/App/FemConstraint.h | 2 +- src/Mod/Start/StartPage/StartPage.py | 2 +- src/Mod/TechDraw/App/ShapeUtils.cpp | 4 ++-- src/Mod/TechDraw/App/ShapeUtils.h | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/App/Link.cpp b/src/App/Link.cpp index be3f53d835..f3c3a2af06 100644 --- a/src/App/Link.cpp +++ b/src/App/Link.cpp @@ -578,8 +578,8 @@ void LinkBaseExtension::syncCopyOnChange() // the mutated object. The reason for doing so is that we are copying from // the original linked object and its dependency, not the mutated objects // which are old copies. There could be arbitrary changes in the originals - // which may add or remove or change dependending orders, while the - // replacement happen between the new and old copies. + // which may add or remove or change depending orders, while the + // replacement happens between the new and old copies. std::map newObjs; for (auto obj : copiedObjs) { diff --git a/src/Mod/Fem/App/FemConstraint.h b/src/Mod/Fem/App/FemConstraint.h index f9696a2439..77899c69bd 100644 --- a/src/Mod/Fem/App/FemConstraint.h +++ b/src/Mod/Fem/App/FemConstraint.h @@ -225,7 +225,7 @@ protected: Base::Vector3d& base, Base::Vector3d& axis) const; /** - * @brief Calculate point of cylidrical face where to render widget. + * @brief Calculate point of cylindrical face where to render widget. * * @note * This method is very specific and doesn't require access to member diff --git a/src/Mod/Start/StartPage/StartPage.py b/src/Mod/Start/StartPage/StartPage.py index 4a295b27ce..8ab0abba8a 100644 --- a/src/Mod/Start/StartPage/StartPage.py +++ b/src/Mod/Start/StartPage/StartPage.py @@ -253,7 +253,7 @@ def getDefaultIcon(): def build_new_file_card(template): - "builds an html
  • element respresenting a new file template" + "builds an html
  • element representing a new file template" templates = { "empty_file": [TranslationTexts.T_TEMPLATE_EMPTYFILE_NAME, TranslationTexts.T_TEMPLATE_EMPTYFILE_DESC], diff --git a/src/Mod/TechDraw/App/ShapeUtils.cpp b/src/Mod/TechDraw/App/ShapeUtils.cpp index 244e28be5d..a9e0d9d71f 100644 --- a/src/Mod/TechDraw/App/ShapeUtils.cpp +++ b/src/Mod/TechDraw/App/ShapeUtils.cpp @@ -20,8 +20,8 @@ * * ***************************************************************************/ -//! a class to contain useful shape manipulations. these methods were orginally in -// GeometryObject. +//! a class to contain useful shape manipulations. these methods were originally +// in GeometryObject. #include "PreCompiled.h" diff --git a/src/Mod/TechDraw/App/ShapeUtils.h b/src/Mod/TechDraw/App/ShapeUtils.h index 2a516f1c14..e831a8c8b7 100644 --- a/src/Mod/TechDraw/App/ShapeUtils.h +++ b/src/Mod/TechDraw/App/ShapeUtils.h @@ -35,8 +35,8 @@ #include -//! a class to contain useful shape manipulations. these methods were orginally in -// GeometryObject. +//! a class to contain useful shape manipulations. these methods were originally +// in GeometryObject. namespace TechDraw {