@@ -292,7 +292,7 @@ def remove(self, command_method: CommandFunc) -> None:
292292
293293@dataclass (kw_only = True )
294294class AsyncAlert :
295- """Contents of an asynchonous alert which display while user is at prompt.
295+ """Contents of an asynchronous alert which display while user is at prompt.
296296
297297 :param msg: an optional message to be printed above the prompt.
298298 :param prompt: an optional string to dynamically replace the current prompt.
@@ -608,7 +608,7 @@ def __init__(
608608 # Command parsers for this Cmd instance.
609609 self ._command_parsers : _CommandParsers = _CommandParsers (self )
610610
611- # Members related to printing asychronous alerts
611+ # Members related to printing asynchronous alerts
612612 self ._alert_queue : deque [AsyncAlert ] = deque ()
613613 self ._alert_condition = threading .Condition ()
614614 self ._alert_allowed = False
@@ -3508,7 +3508,7 @@ def _pre_prompt() -> None:
35083508 self ._alert_allowed = False
35093509
35103510 def _cmdloop (self ) -> None :
3511- """Repeatedly issue a prompt, accept input, parse it, and dispatch to apporpriate commands.
3511+ """Repeatedly issue a prompt, accept input, parse it, and dispatch to appropriate commands.
35123512
35133513 Parse an initial prefix off the received input and dispatch to action methods, passing them
35143514 the remainder of the line as argument.
0 commit comments