-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Fix typo in cmdline.py comment: 'a argument' -> 'an argument' #6875
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 cmdline.py comment: 'a argument' -> 'an argument' #6875
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #6875 +/- ##
==========================================
+ Coverage 90.88% 90.91% +0.03%
==========================================
Files 165 165
Lines 12580 12649 +69
Branches 1642 1662 +20
==========================================
+ Hits 11433 11500 +67
- Misses 836 837 +1
- Partials 311 312 +1
|
I've written a test for the _parse_optional method. Please feel free to use it if it's helpful, or ignore it if it's not suitable.
Could you revert d66f649? I don’t think we need tests for this change. |
Reverted the test commit as requested. Thank you for the review! |
Hmm… Those failures are completely unrelated. I wonder what’s triggering them, though. |
Thanks! |
Description:
This pull request fixes a minor typo in a comment in scrapy/cmdline.py:
Changes "a argument" to "an argument" for correct English usage.
Also improves the comment's clarity by changing "that is" to "that it is" for better English grammar.
No code logic or functionality is affected by this change.
Checklist:
[x] My change is as small as possible and focused on a single issue (typo fix).
[x] No tests are needed as this is a comment-only change.
[x] I have followed the contribution guidelines.