diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-04-20 04:29:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 04:29:35 (GMT) |
commit | 8526fb74edf5ac9ca175b7cdcb0d82bb8780d2cf (patch) | |
tree | b1d4b9acb97f0ee4c5067c44d0b53996b793ccf7 /Doc/howto | |
parent | f7e62cf8adfb8ab6a6a870903defe8ff218a0383 (diff) | |
download | cpython-8526fb74edf5ac9ca175b7cdcb0d82bb8780d2cf.zip cpython-8526fb74edf5ac9ca175b7cdcb0d82bb8780d2cf.tar.gz cpython-8526fb74edf5ac9ca175b7cdcb0d82bb8780d2cf.tar.bz2 |
Remove redundant comma in argparse HOWTO (#1141)
Reported by Sean Canavan on docs@p.o.
Diffstat (limited to 'Doc/howto')
-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 7e161a5..9d770f5 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -221,7 +221,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 |