diff --git a/CODING_STYLE.md b/CODING_STYLE.md index 460dfc15d5..936fd29323 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -10,7 +10,7 @@ on your sources. ## A quick list of code style points - * 4-space indendation, NO TABS! + * 4-space indentation, NO TABS! * Unix line endings. * CamelCase is only used for classes, nothing else. * All non-global variable names and all function names are to be diff --git a/evennia/commands/cmdhandler.py b/evennia/commands/cmdhandler.py index 6a84f82867..6babbabab0 100644 --- a/evennia/commands/cmdhandler.py +++ b/evennia/commands/cmdhandler.py @@ -572,7 +572,7 @@ def cmdhandler( cmd.raw_string = unformatted_raw_string # cmd.obj # set via on-object cmdset handler for each command, # since this may be different for every command when - # merging multuple cmdsets + # merging multiple cmdsets if _testing: # only return the command instance diff --git a/evennia/commands/default/syscommands.py b/evennia/commands/default/syscommands.py index a2964f7ff6..2b5aff1504 100644 --- a/evennia/commands/default/syscommands.py +++ b/evennia/commands/default/syscommands.py @@ -70,7 +70,7 @@ class SystemNoMatch(COMMAND_DEFAULT_CLASS): # -# Command called when there were mulitple matches to the command. +# Command called when there were multiple matches to the command. # class SystemMultimatch(COMMAND_DEFAULT_CLASS): """ diff --git a/evennia/contrib/building_menu.py b/evennia/contrib/building_menu.py index ee85af7811..94910d6d25 100644 --- a/evennia/contrib/building_menu.py +++ b/evennia/contrib/building_menu.py @@ -577,7 +577,7 @@ class BuildingMenu(object): keys_go_back = ["@"] # The keys allowing to go back in the menu tree sep_keys = "." # The key separator for menus with more than 2 levels joker_key = "*" # The special key meaning "anything" in a choice key - min_shortcut = 1 # The minimum length of shorcuts when `key` is not set + min_shortcut = 1 # The minimum length of shortcuts when `key` is not set def __init__( self, diff --git a/evennia/prototypes/prototypes.py b/evennia/prototypes/prototypes.py index af5f129d9c..9189d5abd9 100644 --- a/evennia/prototypes/prototypes.py +++ b/evennia/prototypes/prototypes.py @@ -691,7 +691,7 @@ def validate_prototype( err=err, protkey=protkey, typeclass=typeclass) ) - # recursively traverese prototype_parent chain + # recursively traverse prototype_parent chain for protstring in make_iter(prototype_parent): protstring = protstring.lower()