summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-09-01 11:50:27 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-09-01 11:50:27 -0400
commit20f4a52399c5c1ee87ae57b9f082113663b20060 (patch)
treec1a41b10ceb16b77e7c6460a9c0d6df420cfcadc
parent06163734b94b71ce52938f27b5718bd66357553a (diff)
downloadcmd2-git-20f4a52399c5c1ee87ae57b9f082113663b20060.tar.gz
Fixed spelling
-rw-r--r--cmd2/parsing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/parsing.py b/cmd2/parsing.py
index 875e54c9..b98f630d 100644
--- a/cmd2/parsing.py
+++ b/cmd2/parsing.py
@@ -453,7 +453,7 @@ class StatementParser:
# no trailing whitespace
args = line[match.end(2):].rstrip()
# if the command is none that means the input was either empty
- # or something wierd like '>'. args should be None if we couldn't
+ # or something weird like '>'. args should be None if we couldn't
# parse a command
if not command or not args:
args = None