From 5ce0687b7edb437b59f960125e69cef537b943bf Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Mon, 24 Mar 2025 20:58:31 +0100 Subject: [PATCH] Typo in docstrings --- src/Mod/Draft/draftguitools/gui_trackers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Draft/draftguitools/gui_trackers.py b/src/Mod/Draft/draftguitools/gui_trackers.py index 35341b9c8f..1c067781f6 100644 --- a/src/Mod/Draft/draftguitools/gui_trackers.py +++ b/src/Mod/Draft/draftguitools/gui_trackers.py @@ -1352,12 +1352,12 @@ class gridTracker(Tracker): self.on() def on(self): - """Set the visibility to True and update the checked state grid button.""" + """Set the visibility to True and update the checked state of the grid button.""" super().on() grid_observer._update_grid_gui() def off(self): - """Set the visibility to False and update the checked state grid button.""" + """Set the visibility to False and update the checked state of the grid button.""" super().off() grid_observer._update_grid_gui()