diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-06-13 22:43:42 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-06-13 22:43:42 +0200 |
commit | bd5c943c658f0fa74531e845242f7b00c504b9dc (patch) | |
tree | a7fca393253e06d46e182b9b3b490c452cfe9bca | |
parent | Merge pull request #857 from lioncash/vfp (diff) | |
parent | Use correct style name: PascalCase instead of CamelCase (diff) | |
download | yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar.gz yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar.bz2 yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar.lz yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar.xz yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.tar.zst yuzu-bd5c943c658f0fa74531e845242f7b00c504b9dc.zip |
-rw-r--r-- | CONTRIBUTING.md | 6 |
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 ### Naming Rules * Functions - * CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) + * PascalCase, "_" may also be used for clarity (e.g. ARM_InitCore) * Variables * lower_case_underscored * Prefix "g_" if global * Classes - * CamelCase, "_" may also be used for clarity (e.g. OGL_VideoInterface) + * PascalCase, "_" may also be used for clarity (e.g. OGL_VideoInterface) * Files/Folders * lower_case_underscored * Namespaces - * CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) + * PascalCase, "_" may also be used for clarity (e.g. ARM_InitCore) ### Indentation/Whitespace Style Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead. |