Grammar updates of CONTRIBUTING.md

Fixed some grammatical errors... Not too much to explain
This commit is contained in:
toriacx 2023-12-14 19:11:01 +02:00 committed by GitHub
parent fe699b4333
commit 3e6a888c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -8,9 +8,9 @@
* Split up multiple unrelated changes in multiple pull requests.
* If it's a fix for a unreported bug, make a bug report and link the pull request.
* If it's a fix for an unreported bug, make a bug report and link the pull request.
* Purely cosmetic changes won't be accepted without a very good explanation of its value.
* Pure cosmetic changes won't be accepted without an excellent explanation of its value.
## Formatting
@ -26,7 +26,7 @@
## General guidelines
* Don't force a programming style. Use object oriented, functional, data oriented, etc., where it's suitable.
* Don't force a programming style. Use object-oriented, functional, data-oriented, etc., where it's suitable.
* Use [RAII](https://en.cppreference.com/w/cpp/language/raii).
@ -38,7 +38,7 @@
* Use descriptive names for variables.
* Use comments if not very obvious what your code is doing.
* Use comments if it is not very obvious what your code is doing.
* Add comments as labels for what's currently happening in bigger sections of code for better readability.