Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-12-29 20:48:44 +0300
committerRobert Adam <dev@robert-adam.de>2022-01-01 18:26:02 +0300
commit012245a944da63e9b99825fcb94c448831bfce56 (patch)
tree3ad6f2baa0ac0e1990a54cb961d92bac7fdc32f7 /COMMIT_GUIDELINES.md
parentead095e3d0457f0236e3f7d6c638b8f717f91870 (diff)
DOCS: Clarify MAINT type in commit guidelines
The used example was a bit misleading Co-authored-by: Davide Beatrici <github@davidebeatrici.dev>
Diffstat (limited to 'COMMIT_GUIDELINES.md')
-rw-r--r--COMMIT_GUIDELINES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/COMMIT_GUIDELINES.md b/COMMIT_GUIDELINES.md
index 755013f46..e71ff768b 100644
--- a/COMMIT_GUIDELINES.md
+++ b/COMMIT_GUIDELINES.md
@@ -46,7 +46,7 @@ The `TYPE` is one of the following:
| FORMAT | Change of formatting - does not influence how the code works | Change indentation of a line; Add braces around `if` body |
| DOCS | Changes to the documentation (either in-source or out-of-source) | Add a Doxygen comment to a function |
| TEST | Adds, changes or removes a test-case | |
-| MAINT | Maintenance - Change of non-code files | Change of the README |
+| MAINT | Maintenance - Change of non-code files | Make changes to `.plist` or `.rc` files |
| CI | Changed something for the CI (continuous integration) | Update TravisCI to use newer ubuntu version |
| REFAC | Code refactoring | Rename variable `x` to `y` |
| BUILD | Changes related to the build process / buildsystem | Fix cmake script |