From 7f3c681087b6e9daba4956715b4a89215f47df8b Mon Sep 17 00:00:00 2001
From: Peter van 't Hof <p.j.van_t_hof@lumc.nl>
Date: Wed, 23 Sep 2015 20:27:12 +0200
Subject: [PATCH] fix camelcase

---
 docs/developer/code-style.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/developer/code-style.md b/docs/developer/code-style.md
index cf6e41731..346c67dab 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
-- 
GitLab