-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Clean up doc/dev
documentation files
#6195
Conversation
9. getter and setters | ||
8. `private`/package methods | ||
10. `private` enums (avoid `public`) | ||
11. interfaces | ||
12. `private static` classes (avoid `public`) | ||
13. instance classes (avoid) | ||
9. Getter and setters | ||
10. `private`/package methods | ||
11. `private` enums (avoid `public`) | ||
12. Interfaces | ||
13. `private static` classes (avoid `public`) | ||
14. Instance classes (avoid) |
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.
Looks like when I applied #6125 (comment), it somehow messed up the order numbers.
Thanks a lot for reading through the documentation and fixing all sorts of mistakes. I added a few comments after reading your suggestions. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev-2.x #6195 +/- ##
=============================================
+ Coverage 69.91% 69.92% +0.01%
- Complexity 17727 17732 +5
=============================================
Files 1998 2000 +2
Lines 75452 75487 +35
Branches 7723 7727 +4
=============================================
+ Hits 52751 52788 +37
+ Misses 20022 20015 -7
- Partials 2679 2684 +5 ☔ View full report in Codecov by Sentry. |
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.
Looks good overall. Thanks for taking the time to fix all these details, it makes the documentation easier to read. I just had a few concerns about the use of em-dashes. I think we should probably just not use them at all in the documentation for clarity.
Summary
Cleans up miscellaneous typos, grammatical errors, style inconsistencies, etc. in documentation. This will improve readability for those accessing and referencing the docs, especially for new contributors.
There doesn't appear to be a formatter-enforced line length, so this PR uses 80 characters as that seems to be the loose consensus across other Markdown files in this directory. For stylistic choices like list indents or Oxford commas, this PR makes no decision and preserves existing usage. In general, this PR always favors consistency with existing choices over any standardization of style.
For now, I've touched only the
doc/dev
Markdown files. I can clean up the Markdown files for other docs as well in the future.