From bba1dd53322f1f5297109b9bb302172206198dc3 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Fri, 11 Nov 2011 16:42:11 +0200 Subject: [PATCH] Issue #13191: typo in argparse docs --- Doc/library/argparse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 09f97a9a169..3b8311098a2 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1056,7 +1056,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::