From 5c219bea4187030d56c998bc318bdf4869209ced Mon Sep 17 00:00:00 2001 From: Luz Paz Date: Thu, 5 Jun 2025 08:01:44 -0400 Subject: [PATCH] Sketcher: fix typo in source comment Found via codespell --- src/Mod/Sketcher/Gui/DrawSketchHandlerScale.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Sketcher/Gui/DrawSketchHandlerScale.h b/src/Mod/Sketcher/Gui/DrawSketchHandlerScale.h index 22f3c0ea94..547a5a9c8a 100644 --- a/src/Mod/Sketcher/Gui/DrawSketchHandlerScale.h +++ b/src/Mod/Sketcher/Gui/DrawSketchHandlerScale.h @@ -265,7 +265,7 @@ private: auto* ellipse = static_cast(geo); // NOLINT // OpenCascade throws if we try to set a major radius smaller than - // the minor radius or conversly, so we reorder the operations + // the minor radius or conversely, so we reorder the operations // depending on if we scale up or down if (scaleFactor < 1.0) { ellipse->setMinorRadius(ellipse->getMinorRadius() * scaleFactor);