cmds.CmdPlatform: Fix typo "comamnds" -> "commands"

CmdPlatform's help message contains the string "comamnds", fix that.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-07-06 20:47:05 +02:00
commit 670472abf5
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ class CmdPlatform(Cmd): # export
def __init__(self, parent: Parent) -> None:
super().__init__(
parent, 'platform', help = 'Miscellaneous platform-related comamnds'
parent, 'platform', help = 'Miscellaneous platform-related commands'
)
self.load_subcommands()