From 0a48e97c3665eed62d7ad9b5a1d8dbc6db9ec63b Mon Sep 17 00:00:00 2001 From: archshift Date: Tue, 20 May 2014 15:08:27 -0700 Subject: CONTRIBUTING: Fix some examples, escape underscores --- CONTRIBUTING.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'CONTRIBUTING.md') diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 74c84b00..49742e4e 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, -- cgit v1.2.3