From 973e74100131cc2a0f1f0b4b21ae8817812c5d29 Mon Sep 17 00:00:00 2001 From: Matthew Hopson Date: Sat, 15 Apr 2017 22:52:09 +0100 Subject: [PATCH] Update CODESTYLE.md --- CODESTYLE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CODESTYLE.md b/CODESTYLE.md index da25689..9084e13 100644 --- a/CODESTYLE.md +++ b/CODESTYLE.md @@ -37,7 +37,7 @@ class Foo }; ``` -* public functions and members at top, protected in middle, private at bottom +* Public functions and members at top, protected in middle, private at bottom * Notice a space between the final class member/function and the next accessor! * Private members must be prefixed with "_m" @@ -65,6 +65,7 @@ namespace Bar } }} ``` + ## Includes * All headers should have header guards (#pragma once)