diff options
author | archshift <admin@archshift.com> | 2014-05-21 00:08:27 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-12 12:10:46 +0200 |
commit | 0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b (patch) | |
tree | 733d9427413c18ae5621b02a459be266cc207548 /CONTRIBUTING.md | |
parent | Added CONTRIBUTING.md with contents from Coding Style, updated README link (diff) | |
download | yuzu-0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b.tar yuzu-0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b.tar.gz yuzu-0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b.tar.bz2 yuzu-0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b.tar.lz yuzu-0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b.tar.xz yuzu-0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b.tar.zst yuzu-0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b.zip |
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 74c84b002..49742e4e0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,18 +11,18 @@ 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) + * CamelCase, `_` may also be used for clarity (e.g. `ARM_InitCore`) * Variables - * lower_case_underscored - * Prefix "g_" if global - * Prefix "_" if internal - * Prefix "__" if ultra internal + * lower\_case\_underscored + * Prefix `g_` if global + * Prefix `_` if internal + * Prefix `__` if ultra internal * Classes - * CamelCase, "_" may also be used for clarity (e.g. OGL_VideoInterface) + * CamelCase, `_` may also be used for clarity (e.g. `OGL_VideoInterface`) * Files/Folders - * lower_case_underscored + * lower\_case\_underscored * Namespaces - * CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) + * CamelCase, `_` 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. @@ -96,7 +96,7 @@ void FooBar() { break; } - std::vector + std::string you_can_declare, a_few, variables, |