From dcc11963d8e84f6a211d0ccc3f2dda1be2e90525 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Fri, 15 Sep 2023 00:22:44 +0000 Subject: [PATCH] Fix typos --- src/Gui/Quarter/Quarter.cpp | 2 +- src/Gui/TaskView/TaskSelectLinkProperty.cpp | 2 +- src/Mod/Sketcher/App/SketchObject.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Gui/Quarter/Quarter.cpp b/src/Gui/Quarter/Quarter.cpp index 78d10672d18e..dee5d1c6e0ee 100644 --- a/src/Gui/Quarter/Quarter.cpp +++ b/src/Gui/Quarter/Quarter.cpp @@ -121,7 +121,7 @@ \subpage examples */ -// The subsequent doxygen referenced page/subpages do not exis in the copy of Quarter used within FreeCad. +// The subsequent doxygen referenced page/subpages do not exist in the copy of Quarter used within FreeCad. // To preserve the history and their origin the doxygen commands have been disabled but left in the file. // /*! // \page examples More Examples diff --git a/src/Gui/TaskView/TaskSelectLinkProperty.cpp b/src/Gui/TaskView/TaskSelectLinkProperty.cpp index 22094e2c8a00..1bb20c6fcf60 100644 --- a/src/Gui/TaskView/TaskSelectLinkProperty.cpp +++ b/src/Gui/TaskView/TaskSelectLinkProperty.cpp @@ -153,7 +153,7 @@ void TaskSelectLinkProperty::activate() bool TaskSelectLinkProperty::accept() { - // set the proptery with the selection + // set the property with the selection sendSelection2Property(); // clear selection and remove gate (return to normal operation) diff --git a/src/Mod/Sketcher/App/SketchObject.cpp b/src/Mod/Sketcher/App/SketchObject.cpp index 7734e6bad75b..32918af027ea 100644 --- a/src/Mod/Sketcher/App/SketchObject.cpp +++ b/src/Mod/Sketcher/App/SketchObject.cpp @@ -7649,7 +7649,7 @@ void SketchObject::rebuildExternalGeometry() double t_min = t_max + 0.5 * M_PI; // ON_max = OM(t_max) gives the point, which projected on the sketch plane, - // becomes the apoapse of the pojected ellipse. + // becomes the apoapse of the projected ellipse. gp_Vec ON_max = origAxisMajor * cos(t_max) + origAxisMinor * sin(t_max); gp_Vec ON_min = origAxisMajor * cos(t_min) + origAxisMinor * sin(t_min); gp_Vec destAxisMajor = ProjVecOnPlane_UVN(ON_max, sketchPlane);