diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-04-20 04:41:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 04:41:01 (GMT) |
commit | fb12365c4379a666613f19b9f53d31683dc26ad1 (patch) | |
tree | b7bf0f86465253ccc25839af23e2dcf439a1543d /Doc | |
parent | 450a69c6a4bfee6a10cbcc0c43b221bb135689c8 (diff) | |
download | cpython-fb12365c4379a666613f19b9f53d31683dc26ad1.zip cpython-fb12365c4379a666613f19b9f53d31683dc26ad1.tar.gz cpython-fb12365c4379a666613f19b9f53d31683dc26ad1.tar.bz2 |
Remove redundant comma in argparse HOWTO (GH-1141)
Reported by Sean Canavan on docs@p.o.
(cherry picked from commit 8526fb74edf5ac9ca175b7cdcb0d82bb8780d2cf)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index 02bfc70..63b0b28 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -223,7 +223,7 @@ before proceeding. Introducing Optional arguments ============================== -So far we, have been playing with positional arguments. Let us +So far we have been playing with positional arguments. Let us have a look on how to add optional ones:: import argparse |