Skip to content
Snippets Groups Projects
Commit 66f93b8c authored by Sander van der Zeeuw's avatar Sander van der Zeeuw
Browse files

reformat some sentences

parent a5bca584
No related branches found
No related tags found
No related merge requests found
# 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
- 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
## General rules
- Variable names should alway be in *CamelCase* and does **not** start with a capital letter
- Class names should alway be in *CamelCase* and does **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`, we encourage you to not use `val`
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment