summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/CONTRIBUTING6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/CONTRIBUTING b/docs/CONTRIBUTING
index d36e359719..e426770790 100644
--- a/docs/CONTRIBUTING
+++ b/docs/CONTRIBUTING
@@ -28,10 +28,12 @@ Language features
Write normal C code. Don't redefine the language. No new types (structs are
structs, not typedefs), no C++isms or Javaisms.
-Names
+Identifiers
-----
+We do not want mixed case identifiers.
Variables and function names should be all lower case.
-Preprocessor symbols should be all uppercase.
+Struct and enum names should be all lower case.
+Preprocessor symbols and enum constants should be all upper case.
Comments
--------