summaryrefslogtreecommitdiff
path: root/cmd2
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-08-21 12:41:29 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-08-21 12:41:29 -0400
commita540cfc5373cee2272de6c81be8b6fa8a78c6462 (patch)
tree7891fe9df3cd1fc9b33f0df212842a7091ab1742 /cmd2
parentb570e94fddc657ed1928f52c1b889a2058c36d8d (diff)
downloadcmd2-git-a540cfc5373cee2272de6c81be8b6fa8a78c6462.tar.gz
Fixed typo
Diffstat (limited to 'cmd2')
-rw-r--r--cmd2/cmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index f6a5251c..da576805 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -825,7 +825,7 @@ class Cmd(cmd.Cmd):
def poutput(self, msg: Any = '', *, end: str = '\n') -> None:
"""Print message to self.stdout and appends a newline by default
- Also handles BrokenPipeError exceptions for when a commands's output has
+ Also handles BrokenPipeError exceptions for when a command's output has
been piped to another process and that process terminates before the
cmd2 command is finished executing.