From 6df4d7677aa9dee037853b5e6c08b33718b8ab1a Mon Sep 17 00:00:00 2001 From: digitalfrost Date: Sat, 20 Aug 2022 18:51:59 +0200 Subject: [PATCH] Fix typo --- cura/TaskManagement/OnExitCallbackManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py index 7894931e9c..ce5fbdc948 100644 --- a/cura/TaskManagement/OnExitCallbackManager.py +++ b/cura/TaskManagement/OnExitCallbackManager.py @@ -10,7 +10,7 @@ if TYPE_CHECKING: # -# This class manages a all registered upon-exit checks that need to be perform when the application tries to exit. +# 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.