diff -r a366d3684bc0 Doc/library/argparse.rst --- a/Doc/library/argparse.rst Sun Oct 09 17:29:14 2011 +0100 +++ b/Doc/library/argparse.rst Sun Oct 16 13:03:54 2011 -0700 @@ -1078,10 +1078,10 @@ 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 -optional argument ``--foo`` that should be followed by a single command-line argument -will be referred to as ``FOO``. An example:: +the dest_ value is uppercased. So, a single positional argument with +``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:: >>> parser = argparse.ArgumentParser() >>> parser.add_argument('--foo')