[Python-checkins] cpython (3.2): Fix a few more hyphens in argparse.rst

ezio.melotti python-checkins at python.org
Sat Apr 16 22:14:59 CEST 2011


http://hg.python.org/cpython/rev/fcce2f49ef6d
changeset:   69407:fcce2f49ef6d
branch:      3.2
parent:      69404:88f1907fe312
user:        Ezio Melotti
date:        Sat Apr 16 23:13:50 2011 +0300
summary:
  Fix a few more hyphens in argparse.rst

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


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -2,7 +2,7 @@
 ===============================================================================
 
 .. module:: argparse
-   :synopsis: Command-line option and argument parsing library.
+   :synopsis: Command-line option and argument-parsing library.
 .. moduleauthor:: Steven Bethard <steven.bethard at gmail.com>
 .. sectionauthor:: Steven Bethard <steven.bethard at gmail.com>
 
@@ -12,7 +12,7 @@
 
 --------------
 
-The :mod:`argparse` module makes it easy to write user friendly command line
+The :mod:`argparse` module makes it easy to write user-friendly command-line
 interfaces. The program defines what arguments it requires, and :mod:`argparse`
 will figure out how to parse those out of :data:`sys.argv`.  The :mod:`argparse`
 module also automatically generates help and usage messages and issues errors
@@ -594,7 +594,7 @@
    * default_ - The value produced if the argument is absent from the
      command line.
 
-   * type_ - The type to which the command-line arg should be converted.
+   * type_ - The type to which the command-line argument should be converted.
 
    * choices_ - A container of the allowable values for the argument.
 

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


More information about the Python-checkins mailing list