summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-06-13 13:43:42 -0700
committerGravatar Yuri Kunde Schlesner2015-06-13 13:43:42 -0700
commitbd5c943c658f0fa74531e845242f7b00c504b9dc (patch)
treea7fca393253e06d46e182b9b3b490c452cfe9bca
parentMerge pull request #857 from lioncash/vfp (diff)
parentUse correct style name: PascalCase instead of CamelCase (diff)
downloadyuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar.gz
yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar.xz
yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.zip
Merge pull request #843 from chinhodado/patch-2
Use correct style name: PascalCase instead of CamelCase
-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.