diff options
author | chinhodado <chin.bimbo@gmail.com> | 2015-06-01 23:01:02 +0200 |
---|---|---|
committer | chinhodado <chin.bimbo@gmail.com> | 2015-06-01 23:01:02 +0200 |
commit | b2f49cefb8c8d447298e8331c91d4d69954ec561 (patch) | |
tree | 3d9352e71f31b139cb0b023f04eeed429f897204 | |
parent | Merge pull request #838 from lioncash/thumb (diff) | |
download | yuzu-b2f49cefb8c8d447298e8331c91d4d69954ec561.tar yuzu-b2f49cefb8c8d447298e8331c91d4d69954ec561.tar.gz yuzu-b2f49cefb8c8d447298e8331c91d4d69954ec561.tar.bz2 yuzu-b2f49cefb8c8d447298e8331c91d4d69954ec561.tar.lz yuzu-b2f49cefb8c8d447298e8331c91d4d69954ec561.tar.xz yuzu-b2f49cefb8c8d447298e8331c91d4d69954ec561.tar.zst yuzu-b2f49cefb8c8d447298e8331c91d4d69954ec561.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. |