diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-21 19:56:51 (GMT) |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-21 19:56:51 (GMT) |
| commit | 0a43ecc9df8f4acd200ef4ed6288a442ea5afe4e (patch) | |
| tree | ded504833a20992c047e0adc21c9f59583f722e3 | |
| parent | 01b600c2a36544cf3f232ea0d87f47d436357af8 (diff) | |
| download | cpython-0a43ecc9df8f4acd200ef4ed6288a442ea5afe4e.zip cpython-0a43ecc9df8f4acd200ef4ed6288a442ea5afe4e.tar.gz cpython-0a43ecc9df8f4acd200ef4ed6288a442ea5afe4e.tar.bz2 | |
#11902: Fix typo in argparse doc. Noticed by Vladimir Rutsky.
| -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 a8e0a60..56cb189 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -745,7 +745,7 @@ nargs ArgumentParser objects usually associate a single command-line argument with a single action to be taken. The ``nargs`` keyword argument associates a -different number of command-line arguments with a single action.. The supported +different number of command-line arguments with a single action. The supported values are: * N (an integer). N args from the command line will be gathered together into a |
