From: Taneli Hukkinen Date: Mon, 26 Apr 2021 04:04:26 +0000 (+0200) Subject: Fix documentation typos of argparse exit_on_error (GH-22706) X-Git-Tag: v3.10.0b1~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7be870f9456ad04c3b67881497de6346d83805d2;p=thirdparty%2FPython%2Fcpython.git Fix documentation typos of argparse exit_on_error (GH-22706) --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 80e0f013df09..d065487e281d 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -659,7 +659,7 @@ exit_on_error Normally, when you pass an invalid argument list to the :meth:`~ArgumentParser.parse_args` method of an :class:`ArgumentParser`, it will exit with error info. -If the user would like catch errors manually, the feature can be enable by setting +If the user would like to catch errors manually, the feature can be enabled by setting ``exit_on_error`` to ``False``:: >>> parser = argparse.ArgumentParser(exit_on_error=False)