diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-16 10:37:20 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-16 10:37:20 -0500 |
commit | 37b8bcad1dada15d91704f1195920fd59bbdd7d1 (patch) | |
tree | c5da261a2b7375de0a318c970d11d73847dfa862 | |
parent | dcf83a36a38b0aad650571d19da073d92b029382 (diff) | |
download | cmd2-git-37b8bcad1dada15d91704f1195920fd59bbdd7d1.tar.gz |
Updating some doc text
-rw-r--r-- | cmd2/cmd2.py | 2 | ||||
-rw-r--r-- | docs/features/builtin_commands.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index f41fb139..cce281b7 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -290,7 +290,7 @@ class Cmd(cmd.Cmd): # The error that prints when a non-existent command is run self.default_error = "{} is not a recognized command, alias, or macro" - # If non-empty, this contents will be displayed if a broken pipe error occurs + # If non-empty, this string will be displayed if a broken pipe error occurs self.broken_pipe_warning = '' # Commands that will run at the beginning of the command loop diff --git a/docs/features/builtin_commands.rst b/docs/features/builtin_commands.rst index 6bba13fe..2a857339 100644 --- a/docs/features/builtin_commands.rst +++ b/docs/features/builtin_commands.rst @@ -29,7 +29,7 @@ within a running application: .. code-block:: text (Cmd) set --long - allow_style: Terminal # Allow ANSI escape sequences in output (valid values: Terminal, Always, Never) + allow_style: Terminal # Allow ANSI text style sequences in output (valid values: Terminal, Always, Never) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error echo: False # Echo command issued into output |