Compare commits

..

No commits in common. "ce2d6a244238ed80370dc2552cca330846aa19c4" and "5c715a68143acb2c532626e80b72fee522672d15" have entirely different histories.

View File

@ -17,14 +17,12 @@ or
# 2 Naming
## 2.1 General
Names should only include ASCII letters and digits and should never begin with a digit.
All names should _ALWAYS_ be in english
## 2.2 Class names
Class names are written in UpperCamelCase
## 2.3 Method names
Class names are written in lowerCamelCase.
They are often verbs describing the function of the method e.g. _startProcess_ or _log_
They are often verbs describing the function of the method.
## 2.4 Constant names
Constant names are written in UPPER_CASE
##