-
-
Notifications
You must be signed in to change notification settings - Fork 787
fix typos and grammar (master) #8999
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 typos and grammar (master) #8999
Conversation
4bb03c8
to
525dd28
Compare
525dd28
to
722e974
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #8999 +/- ##
==========================================
- Coverage 81.44% 81.43% -0.02%
==========================================
Files 77 77
Lines 13524 13515 -9
Branches 2005 2004 -1
==========================================
- Hits 11015 11006 -9
Misses 1853 1853
Partials 656 656 ☔ View full report in Codecov by Sentry. |
The original markup included a paragraph element wrapping a block-level pre element, which is invalid per HTML’s content model (a p can only contain phrasing content; pre is flow content). The fix separated text and pre blocks into valid sibling elements, ensuring no pre is nested inside a p.
this was done by Junie AI.
722e974
to
2c7bec0
Compare
for pattern in matcher.get_unmatched_include_patterns(): | ||
self.print_warning_instance(IncludePatternNeverMatchedWarning(pattern)) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was a bad Junie mistake: although it was only asked to fix grammar and typos, it removed this code!
The code maybe wasn't working (see the added import for the warning class), but still a rather unexpected AI action.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed it manually.
No description provided.