summaryrefslogtreecommitdiff
path: root/doc/topics/code-style.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/topics/code-style.txt')
-rw-r--r--doc/topics/code-style.txt7
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/topics/code-style.txt b/doc/topics/code-style.txt
index 45318ab..25b3b3e 100644
--- a/doc/topics/code-style.txt
+++ b/doc/topics/code-style.txt
@@ -27,8 +27,5 @@ About: Code structure
27- It is advised to declare variables on the stack instead of the heap when possible. 27- It is advised to declare variables on the stack instead of the heap when possible.
28- The use of `assert` is encouraged. 28- The use of `assert` is encouraged.
29- The use of `static` functions is encouraged. Such members must be declared prior to others. 29- The use of `static` functions is encouraged. Such members must be declared prior to others.
30 30- Imports should be thematically sorted, with the current spec file listed first, followed by external imports,
31 31 then internal imports
32About: Unit tests
33
34- Unit test files have the `.test.c` extension.