diff options
-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.:: |