@@ -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.
@@ -605,7 +605,7 @@ def __init__(
605605 # Command parsers for this Cmd instance.
606606 self ._command_parsers : _CommandParsers = _CommandParsers (self )
607607
608- # Members related to printing asychronous alerts
608+ # Members related to printing asynchronous alerts
609609 self ._alert_queue : deque [AsyncAlert ] = deque ()
610610 self ._alert_condition = threading .Condition ()
611611 self ._alert_allowed = False
@@ -3505,7 +3505,7 @@ def _pre_prompt() -> None:
35053505 self ._alert_allowed = False
35063506
35073507 def _cmdloop (self ) -> None :
3508- """Repeatedly issue a prompt, accept input, parse it, and dispatch to apporpriate commands.
3508+ """Repeatedly issue a prompt, accept input, parse it, and dispatch to appropriate commands.
35093509
35103510 Parse an initial prefix off the received input and dispatch to action methods, passing them
35113511 the remainder of the line as argument.
0 commit comments