Compare commits

..

2 Commits

Author SHA1 Message Date
701040606e Merge branch 'master' of git.bib.de:MAM/VPR-Docs 2021-11-16 10:46:42 +01:00
52e0f486ad added code guide 2021-11-16 10:46:07 +01:00

13
Docs/coding guide.md Normal file
View File

@ -0,0 +1,13 @@
# Formatting
# 2 Naming
## 2.1 General
Names should only include ASCII letters and digits and should never begin with a digit.
## 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.
##