From 249d6997c741f975e560670e50554ab9dc8fe739 Mon Sep 17 00:00:00 2001
From: Maximilian Reininghaus <maximilian.reininghaus@kit.edu>
Date: Sat, 19 Jan 2019 00:11:39 +0100
Subject: [PATCH] coding conventions: removed requirement of "e" for enum class
 values

---
 CONTRIBUTING.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index ef4e4ec9a..4efb04f9d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -51,7 +51,7 @@ While `clang-format` does the structural formatting, we still need to agree on n
   - Any static variable has a "g" prefix. A static member variable starts with "fg"
   - Class member functions start with capital letters
   - Any class getter begins with "Get", and setter with "Set". Logical getters start with "Is" or "Has".
-  - enums should be "enum class", and start with a capital "E", enum entries start with "e"
+  - enums should be "enum class" and start with a capital "E"
   - Function parameter names start with "v"
 
   - We use namespaces to avoid clashes and to structure code
-- 
GitLab