summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2020-05-15 11:24:43 +0100
committerAndreas Kling <kling@serenityos.org>2020-05-15 12:26:23 +0200
commit85f2987848e24bd32ff093ee678d11df63492423 (patch)
tree125235982a08a7ed464aa129626bede3484f9e0a /CONTRIBUTING.md
parent7aad44b8257f84c9a9dfe0c95eca86e1ba932b5b (diff)
downloadserenity-85f2987848e24bd32ff093ee678d11df63492423.zip
Docs: Update required clang-format version to 10 in CONTRIBUTING.md
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1c977ccb61..fdedb4e6be 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -34,7 +34,7 @@ Nobody is perfect, and sometimes we mess things up. That said, here are some goo
**Do:**
* Write in idiomatic Serenity C++17, using the `AK` containers in all code.
-* Conform to the project coding style found in [CodingStyle.md](https://github.com/SerenityOS/serenity/blob/master/Documentation/CodingStyle.md). Please use `clang-format` (version 8 or newer) to automatically format C++ files.
+* Conform to the project coding style found in [CodingStyle.md](https://github.com/SerenityOS/serenity/blob/master/Documentation/CodingStyle.md). Please use `clang-format` (version 10 or later) to automatically format C++ files.
* Choose expressive variable, function and class names. Make it as obvious as possible what the code is doing.
* Split your changes into separate, atomic commits.
* Make sure your commits are rebased on the master branch.