Merge branch 'master' of git.bib.de:MAM/VPR-Docs

This commit is contained in:
Marc Beyer 2021-11-16 11:03:10 +01:00
commit ce2d6a2442

View File

@ -1,4 +1,19 @@
# Formatting
## 1.1 General
maximal 80-100 letters in one line
## 1.2 Arrays
String[] array = new String[]{"1", "2", "3", "4"}
or
String[] array = new String[]{
"1",
"2",
"3",
"4"
}
# 2 Naming
## 2.1 General
Names should only include ASCII letters and digits and should never begin with a digit.