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.