From 66f93b8c6f2c5dcc682b9ec5c8682a70c5562e0d Mon Sep 17 00:00:00 2001 From: sajvanderzeeuw <s.a.j.van_der_zeeuw@lumc.nl> Date: Thu, 24 Sep 2015 15:21:33 +0200 Subject: [PATCH] reformat some sentences --- docs/developer/code-style.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/developer/code-style.md b/docs/developer/code-style.md index 346c67dab..1a302c2ba 100644 --- a/docs/developer/code-style.md +++ b/docs/developer/code-style.md @@ -1,6 +1,7 @@ # 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 -- GitLab