From 3246f736b8b0ee9cd8b36bb4038c478ed33fa5a0 Mon Sep 17 00:00:00 2001 From: fcd Date: Wed, 25 Mar 2020 13:03:45 +0000 Subject: [PATCH] docs: Fix repeated word in argparse documentation --- doc_src/cmds/argparse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/cmds/argparse.rst b/doc_src/cmds/argparse.rst index fd8f0c64d..354b6b948 100644 --- a/doc_src/cmds/argparse.rst +++ b/doc_src/cmds/argparse.rst @@ -135,7 +135,7 @@ Some OPTION_SPEC examples: - ``n-name=+`` means that only ``--name`` is valid. It requires a value and can be used more than once. If the flag is seen then ``_flag_n`` and ``_flag_name`` will be set with the values associated with each occurrence of the flag. -- ``x`` means that only ``-x`` is valid. It is a boolean can can be used more than once. If it is seen then ``_flag_x`` will be set to the count of how many times the flag was seen. +- ``x`` means that only ``-x`` is valid. It is a boolean that can be used more than once. If it is seen then ``_flag_x`` will be set to the count of how many times the flag was seen. - ``x=``, ``x=?``, and ``x=+`` are similar to the n/name examples above but there is no long flag alternative to the short flag ``-x``.