diff --git a/docs/developer/code-style.md b/docs/developer/code-style.md index cf6e41731120551b9b5894a9920b199108c052f3..346c67dab2a0f9507d3953fe62e3757c857e172c 100644 --- a/docs/developer/code-style.md +++ b/docs/developer/code-style.md @@ -1,6 +1,6 @@ # Developer - Code style -- Variable names should alway be in *camelcase* and do **not** start with a capital letter -- Class names should alway be in *Camelcase* and do **always** start with a capital letter +- Variable names should alway be in *camelCase* and do **not** start with a capital letter +- Class names should alway be in *CamelCase* and do **always** start with a capital letter - Avoid using null, the Option type in scala can be used instead - If a method/value is designed to be overridden make it a `def` and override it with a `def`, do not use `val` \ No newline at end of file