summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-11 10:02:27 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-11 10:02:27 (GMT)
commit53ba2d10e0d94a7609c0a71d41956a58e6a68f9d (patch)
tree75cd27949f0f85dd0fbbe823b1a05b2c1bd7ebcc /Doc/howto
parent3a95f45a38dad10fd69b3bd48c8754da431d0ef1 (diff)
downloadcpython-53ba2d10e0d94a7609c0a71d41956a58e6a68f9d.zip
cpython-53ba2d10e0d94a7609c0a71d41956a58e6a68f9d.tar.gz
cpython-53ba2d10e0d94a7609c0a71d41956a58e6a68f9d.tar.bz2
Issue #27991: Remove incorrect sentence about store_true
Patch by py.user.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/argparse.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst
index cfe9868..3b79b92 100644
--- a/Doc/howto/argparse.rst
+++ b/Doc/howto/argparse.rst
@@ -503,8 +503,8 @@ to count the number of occurrences of a specific optional arguments:
* Now here's a demonstration of what the "count" action gives. You've probably
seen this sort of usage before.
-* And, just like the "store_true" action, if you don't specify the ``-v`` flag,
- that flag is considered to have ``None`` value.
+* And if you don't specify the ``-v`` flag, that flag is considered to have
+ ``None`` value.
* As should be expected, specifying the long form of the flag, we should get
the same output.