diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-11-11 08:57:01 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-11-11 08:57:01 (GMT) |
commit | a7795dbe9ab2bb10692e551299183306e44e5c74 (patch) | |
tree | a1e8a220f5e86c4cff524dd14feca6f0c3502257 /Doc | |
parent | c2c896093b8d312fabbb898e030331b5d4fc1fc5 (diff) | |
download | cpython-a7795dbe9ab2bb10692e551299183306e44e5c74.zip cpython-a7795dbe9ab2bb10692e551299183306e44e5c74.tar.gz cpython-a7795dbe9ab2bb10692e551299183306e44e5c74.tar.bz2 |
Issue #13191: typo in argparse docs
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 9c7ef52..305a546 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1060,7 +1060,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:: |