diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-11-11 08:58:36 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-11-11 08:58:36 (GMT) |
commit | 28a08205c5112bde6585ec60bfdf48c8363c15b6 (patch) | |
tree | fc5f7c405a61007dd1bb7909711a73d0e51cec9e /Doc/library/argparse.rst | |
parent | 6e9002c8e04add1aa9de165a369ba23c21221bff (diff) | |
parent | a7795dbe9ab2bb10692e551299183306e44e5c74 (diff) | |
download | cpython-28a08205c5112bde6585ec60bfdf48c8363c15b6.zip cpython-28a08205c5112bde6585ec60bfdf48c8363c15b6.tar.gz cpython-28a08205c5112bde6585ec60bfdf48c8363c15b6.tar.bz2 |
Issue #13191: typo in argparse docs
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 7a92052..0d6925d 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1079,7 +1079,7 @@ to each expected argument. By default, ArgumentParser objects use the dest_ value as the "name" of each object. By default, for positional argument actions, the dest_ value is used directly, and for optional argument actions, the dest_ value is uppercased. So, a single positional argument with -``dest='bar'`` will that argument will be referred to as ``bar``. A single +``dest='bar'`` will be referred to as ``bar``. A single optional argument ``--foo`` that should be followed by a single command-line argument will be referred to as ``FOO``. An example:: |