diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-28 14:07:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 14:07:20 (GMT) |
commit | fe7746c61a73f58f0cf905ad1378be884d479b5b (patch) | |
tree | 857f611e6570e954e5f8972bb4bb9afbd5761c38 /Doc | |
parent | 813fbba4cab4556e55d6044c05725a26ec20b648 (diff) | |
download | cpython-fe7746c61a73f58f0cf905ad1378be884d479b5b.zip cpython-fe7746c61a73f58f0cf905ad1378be884d479b5b.tar.gz cpython-fe7746c61a73f58f0cf905ad1378be884d479b5b.tar.bz2 |
[doc] fix minor typo for argparse (GH-28451)
"A JSONDecodeError" instead of "An JSONDecodeError".
(cherry picked from commit db0133f98dd42d0fb82a7675bde175cec51bb860)
Co-authored-by: Louis Sautier <sautier.louis@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 6c01667..fa731fe 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1104,7 +1104,7 @@ Anything with more interesting error-handling or resource management should be done downstream after the arguments are parsed. For example, JSON or YAML conversions have complex error cases that require -better reporting than can be given by the ``type`` keyword. An +better reporting than can be given by the ``type`` keyword. A :exc:`~json.JSONDecodeError` would not be well formatted and a :exc:`FileNotFound` exception would not be handled at all. |