-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Fix typo in argparse docs. #92691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typo in argparse docs. #92691
Conversation
Every change to Python requires a NEWS entry. Please, add it using the blurb_it Web app or the blurb command-line tool. |
@thueringa: Status check is done, and it's a success ✅ . |
Thanks @thueringa for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10, 3.11. |
Sorry, @thueringa, I could not cleanly backport this to |
GH-92709 is a backport of this pull request to the 3.11 branch. |
Sorry @thueringa, I had trouble checking out the |
GH- Fix typo in argparse docs. > Sometimes, when dealing with **a** particularly long argument list**s**, [...] Mixture between plural and singular forms is incorrect. Use singular consistently since typically only a single argument list is employed. Change to: > Sometimes, when dealing with a particularly long argument list, [...] No issue was opened, since this is a trivial change. Automerge-Triggered-By: GH:rhettinger (cherry picked from commit f67d71b) Co-authored-by: thueringa <[email protected]>
> Sometimes, when dealing with **a** particularly long argument list**s**, [...] Mixture between plural and singular forms is incorrect. Use singular consistently since typically only a single argument list is employed. Change to: > Sometimes, when dealing with a particularly long argument list, [...] No issue was opened, since this is a trivial change. Automerge-Triggered-By: GH:rhettinger (cherry picked from commit f67d71b)
GH-92729 is a backport of this pull request to the 3.10 branch. |
> Sometimes, when dealing with **a** particularly long argument list**s**, [...] Mixture between plural and singular forms is incorrect. Use singular consistently since typically only a single argument list is employed. Change to: > Sometimes, when dealing with a particularly long argument list, [...] No issue was opened, since this is a trivial change. Automerge-Triggered-By: GH:rhettinger (cherry picked from commit f67d71b)
GH-92731 is a backport of this pull request to the 3.9 branch. |
Fix typo in argparse docs.
Mixture between plural and singular forms is incorrect. Use singular consistently since typically only a single argument list is employed. Change to:
No issue was opened, since this is a trivial change.
Automerge-Triggered-By: GH:rhettinger