From: Louis Sautier Date: Tue, 28 Sep 2021 11:00:51 +0000 (+0200) Subject: [doc] fix minor typo for argparse (GH-28451) X-Git-Tag: v3.11.0a1~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db0133f98dd42d0fb82a7675bde175cec51bb860;p=thirdparty%2FPython%2Fcpython.git [doc] fix minor typo for argparse (GH-28451) "A JSONDecodeError" instead of "An JSONDecodeError". --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index ac8a2fd6195f..2edf84e5f044 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1109,7 +1109,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.