fix: fixed file extension in CONTRIBUTING.md

This commit is contained in:
rmntgx 2025-05-17 21:53:22 +00:00
parent 620d861d8c
commit 44d7836955

View File

@ -14,7 +14,7 @@ For small fixes or incremental improvements simply fork the repo and follow the
- Configure clangd LSP by generating `compile_commands.json` (e.g. `bear -- make` or `compiledb make`) - Configure clangd LSP by generating `compile_commands.json` (e.g. `bear -- make` or `compiledb make`)
- Implement your feature. - Implement your feature.
- Check your code works as expected. - Check your code works as expected.
- Run the code formatter: `clang-format -i $(git ls-files "*.cpp" "*.h")` - Run the code formatter: `clang-format -i $(git ls-files "*.c" "*.h")`
3. Commit your changes to a new branch (not `master`, one change per branch) and push it: 3. Commit your changes to a new branch (not `master`, one change per branch) and push it:
- Commit messages should: - Commit messages should: