diff options
author | Donald Stufft <donald@stufft.io> | 2014-05-20 16:58:38 (GMT) |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2014-05-20 16:58:38 (GMT) |
commit | 8b852f111eb3e3f2e4f53f207859fdb3654d9b10 (patch) | |
tree | 7b730a2191a3fcc424e834994b35c24b1f4dbd3d /Doc/library/argparse.rst | |
parent | 1c4398f880c21d5e14462ef7096319da39148774 (diff) | |
download | cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.zip cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.tar.gz cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.tar.bz2 |
Fix Issue #21528 - Fix documentation typos
Diffstat (limited to 'Doc/library/argparse.rst')
-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 b1b5135..36dc5f3 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1873,7 +1873,7 @@ Customizing file parsing Arguments that are read from a file (see the *fromfile_prefix_chars* keyword argument to the :class:`ArgumentParser` constructor) are read one - argument per line. :meth:`convert_arg_line_to_args` can be overriden for + argument per line. :meth:`convert_arg_line_to_args` can be overridden for fancier reading. This method takes a single argument *arg_line* which is a string read from |