From 61fabe7d19e1e156f363ac935977c49ab94f2203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89der=20F=2E=20Zulian?= Date: Wed, 11 Apr 2018 20:10:35 +0200 Subject: [PATCH] Coding-style doc updated --- coding-style.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/coding-style.md b/coding-style.md index 96831c37..7b686d65 100644 --- a/coding-style.md +++ b/coding-style.md @@ -70,10 +70,9 @@ char itemDelimiter = ' '; ``` Classes always start with an upper-case letter (e.g, MemoryManager, -TracePlayer, PythonCaller, etc.), being **DRAMSys** a notable exception to the -rule. - -Acronyms are camel-cased (e.g., TlmRecorder, not TLMRecorder, Dram, not DRAM). +TracePlayer, PythonCaller, etc.). +Acronyms are camel-cased (e.g., TlmRecorder, not TLMRecorder, Dram, not DRAM), +being **DRAMSys** a notable exception to the rule. #### Whitespace Always use a single space after a keyword and before a curly brace: @@ -124,7 +123,6 @@ if (foo) bar(); ``` - ## DRAMSys Coding Style for Python Code We follow the PEP8 style guide.