diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-03-26 17:36:23 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-03-26 17:36:23 (GMT) |
commit | 99e7d0706eb4c424be6e648f1b3b69dba6b5aa34 (patch) | |
tree | a581d70d87b49ce0de7460c9bfd67f40327cffbd /Doc/library | |
parent | 8ece80faae3bec86628aa4176a751265ecb2f2a4 (diff) | |
download | cpython-99e7d0706eb4c424be6e648f1b3b69dba6b5aa34.zip cpython-99e7d0706eb4c424be6e648f1b3b69dba6b5aa34.tar.gz cpython-99e7d0706eb4c424be6e648f1b3b69dba6b5aa34.tar.bz2 |
Issue #14410: fix typo in argparse doc; patch by Tshepang Lekhonkhobe
Diffstat (limited to 'Doc/library')
-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 79a98cb..b84e5c8 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1642,8 +1642,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 |