Update .github/CONTRIBUTING.md

Co-authored-by: tooomm <tooomm@users.noreply.github.com>
This commit is contained in:
DawnFire42 2026-05-19 10:44:59 -04:00
parent 18a77dd78b
commit 69b076e1f9
No known key found for this signature in database
GPG key ID: 24BB855EE2911B33

View file

@ -211,11 +211,11 @@ into smaller parts, for example at spaces or after opening a brace.
### Documentation Comments ### ### Documentation Comments ###
Use [Doxygen](https://www.doxygen.nl/) for API documentation: Use [Doxygen](https://www.doxygen.nl/) for code documentation:
- **Doc blocks**: Use `/** @brief Description */` (JavaDoc-style), not `///` - **Doc blocks**: Use `/** @brief Description */` (Javadoc-style), not `///`
- **Member comments**: Use trailing `///<` for inline member documentation - **Member comments**: Use trailing `///<` for inline member documentation
- **TODOs**: Use `//! \todo Description` (Qt-style) so Doxygen collects them into a Todo List - **TODOs**: Use `//! \todo Description` (Qt-style), Doxygen collects them into a Todo List
(uses [Qt-style comments](https://www.doxygen.nl/manual/docblocks.html) with (uses [Qt-style comments](https://www.doxygen.nl/manual/docblocks.html) with
Doxygen's [\todo command](https://www.doxygen.nl/manual/commands.html#cmdtodo)) Doxygen's [\todo command](https://www.doxygen.nl/manual/commands.html#cmdtodo))