diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-04-09 14:15:48 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-04-09 14:15:48 -0400 |
commit | dfd1e34d9391ae1328ec8b05296156a4a7bafaf7 (patch) | |
tree | 976a35e72403b6fae7d5c3d1db4bfa8b7b87f377 /docs | |
parent | f9a3aca8ae61448faf2349df14ce4175e2874be3 (diff) | |
download | cmd2-git-dfd1e34d9391ae1328ec8b05296156a4a7bafaf7.tar.gz |
Fix extra space typo
Diffstat (limited to 'docs')
-rw-r--r-- | docs/features/argument_processing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/features/argument_processing.rst b/docs/features/argument_processing.rst index e8e5457d..18c5b7ca 100644 --- a/docs/features/argument_processing.rst +++ b/docs/features/argument_processing.rst @@ -357,7 +357,7 @@ when it comes to runtime behavior and ``argparse`` errors. There is nothing ``cmd2``-specific here, this is just a side-effect of how decorators work in Python. To learn more about how decorators work, see decorator_primer_. -If you want your custom decorator's runtime behavior to occur in the case of +If you want your custom decorator's runtime behavior to occur in the case of an ``argparse`` error, then that decorator needs to go **after** the ``argparse`` one, e.g.:: |