From f5b40648a6baf8fd3eb4b0862ae87aa4eb61e799 Mon Sep 17 00:00:00 2001 From: Ari Mudev Date: Mon, 6 Jul 2009 13:14:10 +0000 Subject: [PATCH] Correct minor inline documentation typos. --- src/config_defaults.py | 2 +- src/statetable.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config_defaults.py b/src/config_defaults.py index 491cf61110..5c786e3746 100644 --- a/src/config_defaults.py +++ b/src/config_defaults.py @@ -239,7 +239,7 @@ INSTALLED_APPS = ( ) """ -A tuple of strings representing all of the Evennia (IE: non-custom) commnad +A tuple of strings representing all of the Evennia (IE: non-custom) command modules that are used at the login screen in the UNLOGGED command table. Do not modify this directly, add your custom command modules to CUSTOM_UNLOGGED_COMMAND_MODULES. diff --git a/src/statetable.py b/src/statetable.py index 300d6d5c0e..dec786718c 100644 --- a/src/statetable.py +++ b/src/statetable.py @@ -36,7 +36,7 @@ class StateTable(object): exit_command=True): """ Access function; transparently add commands to a specific command table to - reprsent a particular state. This command is similar to the normal + represent a particular state. This command is similar to the normal command_table.add_command() function. See example in gamesrc/commands/examples. command_string: (str) command name to run, like look, @list etc