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>2022-01-01 19:12:42 +0300
committerGitHub <noreply@github.com>2022-01-01 19:12:42 +0300
commit74057e0f5287168231ff60e9c4d616fe8a250c39 (patch)
tree775c5bf76bcbf974e0ee6ac73bc2e53ce83bd7e6
parente2622fe453dc70b1b035f27933b1f1442502ae7b (diff)
parent012245a944da63e9b99825fcb94c448831bfce56 (diff)
Merge PR #5398: DOCS: Clarify MAINT type in commit guidelines
The used example was a bit misleading
-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 |