diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-03-26 19:35:52 +0200 |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-03-26 19:35:52 +0200 |
commit | 48a88953cc493de6155400f4b34722a93dd3a95f (patch) | |
tree | 67659a82c5f2010e8518d2faa545e7d139fd48d9 | |
parent | 49d5fbab87d95448c5710e5f509fc7e9c6ccee91 (diff) | |
download | cpython-git-48a88953cc493de6155400f4b34722a93dd3a95f.tar.gz |
Issue #14410: fix typo in argparse doc; patch by Tshepang Lekhonkhobe
-rw-r--r-- | Doc/library/argparse.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index c76fe60453..bb7c88de9e 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1634,8 +1634,8 @@ Argument groups --bar BAR bar help - Note that any arguments not your user defined groups will end up back in the - usual "positional arguments" and "optional arguments" sections. + Note that any arguments not in your user-defined groups will end up back + in the usual "positional arguments" and "optional arguments" sections. Mutual exclusion |