summaryrefslogtreecommitdiff
path: root/docs/features/argument_processing.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/features/argument_processing.rst')
-rw-r--r--docs/features/argument_processing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/features/argument_processing.rst b/docs/features/argument_processing.rst
index bcc68633..9a78d720 100644
--- a/docs/features/argument_processing.rst
+++ b/docs/features/argument_processing.rst
@@ -170,7 +170,7 @@ To add additional text to the end of the generated help message, use the ``epilo
from cmd2 import with_argparser
argparser = argparse.ArgumentParser(description='create an html tag',
- epilog='This command can not generate tags with no content, like <br/>.')
+ epilog='This command cannot generate tags with no content, like <br/>.')
argparser.add_argument('tag', help='tag')
argparser.add_argument('content', nargs='+', help='content to surround with tag')
@with_argparser(argparser)
@@ -193,7 +193,7 @@ Which yields:
optional arguments:
-h, --help show this help message and exit
- This command can not generate tags with no content, like <br/>
+ This command cannot generate tags with no content, like <br/>
.. warning::