[Python-checkins] cpython (3.2): #11902: Fix typo in argparse doc. Noticed by Vladimir Rutsky.

ezio.melotti python-checkins at python.org
Thu Apr 21 21:59:21 CEST 2011


http://hg.python.org/cpython/rev/88df1ef4eec8
changeset:   69517:88df1ef4eec8
branch:      3.2
parent:      69513:498f8b79a93f
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Apr 21 22:56:51 2011 +0300
summary:
  #11902: Fix typo in argparse doc. Noticed by Vladimir Rutsky.

files:
  Doc/library/argparse.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -749,7 +749,7 @@
 
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list