From 6298bb50ce72ebce4e7252c58741a6e318f525df Mon Sep 17 00:00:00 2001 From: digitalfrost Date: Sat, 20 Aug 2022 18:58:03 +0200 Subject: [PATCH] OnExitCallbackManager.py: Fix grammar Grammatical correction of docstring --- cura/TaskManagement/OnExitCallbackManager.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py index ce5fbdc948..32a805cca8 100644 --- a/cura/TaskManagement/OnExitCallbackManager.py +++ b/cura/TaskManagement/OnExitCallbackManager.py @@ -10,10 +10,10 @@ if TYPE_CHECKING: # -# This class manages all registered upon-exit checks that need to be perform when the application tries to exit. -# For example, to show a confirmation dialog when there is USB printing in progress, etc. All callbacks will be called -# in the order of when they got registered. If all callbacks "passes", that is, for example, if the user clicks "yes" -# on the exit confirmation dialog or nothing that's blocking the exit, then the application will quit after that. +# This class manages all registered upon-exit checks that need to be performed when the application tries to exit. +# For example, show a confirmation dialog when there is USB printing in progress. All callbacks will be called +# in the order of when they were registered. If all callbacks "pass", that is, for example, if the user clicks "yes" +# on the exit confirmation dialog and nothing is blocking the exit, then the application will quit. # class OnExitCallbackManager: