summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <none@none>2011-04-16 23:13:50 +0300
committerEzio Melotti <none@none>2011-04-16 23:13:50 +0300
commit2409d770d9eefd17133b2446c1cb9719e3081726 (patch)
tree0dfa7df433d9ce71ed4619fca856635a7cd04cdd /Doc
parentf25a8de845d20349a265442eb0f3dcd71d0d7ac5 (diff)
downloadcpython-git-2409d770d9eefd17133b2446c1cb9719e3081726.tar.gz
Fix a few more hyphens in argparse.rst
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/argparse.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index ce58e886d6..0e05b49c69 100644
--- 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@gmail.com>
.. sectionauthor:: Steven Bethard <steven.bethard@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 @@ The add_argument() method
* 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.