summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CONTRIBUTING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c8c8e3884..906a4bc7d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -10,16 +10,16 @@ Citra is a brand new project, so we have a great opportunity to keep things clea
10 10
11### Naming Rules 11### Naming Rules
12* Functions 12* Functions
13 * CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) 13 * PascalCase, "_" may also be used for clarity (e.g. ARM_InitCore)
14* Variables 14* Variables
15 * lower_case_underscored 15 * lower_case_underscored
16 * Prefix "g_" if global 16 * Prefix "g_" if global
17* Classes 17* Classes
18 * CamelCase, "_" may also be used for clarity (e.g. OGL_VideoInterface) 18 * PascalCase, "_" may also be used for clarity (e.g. OGL_VideoInterface)
19* Files/Folders 19* Files/Folders
20 * lower_case_underscored 20 * lower_case_underscored
21* Namespaces 21* Namespaces
22 * CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) 22 * PascalCase, "_" may also be used for clarity (e.g. ARM_InitCore)
23 23
24### Indentation/Whitespace Style 24### Indentation/Whitespace Style
25Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead. 25Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead.