diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-04-20 04:42:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 04:42:32 (GMT) |
commit | 83a90b9aeda3a4c10e8393893ed4ec8adc861e62 (patch) | |
tree | 485fcaeb6503f9adb3f7fe3ae4ef3d4d133e758b /Doc | |
parent | 596e714d79a22d1d53f26ae1a579dcd43f15865a (diff) | |
download | cpython-83a90b9aeda3a4c10e8393893ed4ec8adc861e62.zip cpython-83a90b9aeda3a4c10e8393893ed4ec8adc861e62.tar.gz cpython-83a90b9aeda3a4c10e8393893ed4ec8adc861e62.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 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 |