diff --git a/Coding-Style.md b/Coding-Style.md index 6f8214f..0811a0b 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -25,7 +25,8 @@ Citra is a brand new project, so we have a great opportunity to keep things clea ### Indentation/Whitespace Style Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead. -
namespace Example { +```cpp +namespace Example { // Namespace contents are not indented @@ -100,4 +101,5 @@ void FooBar() { like_this; } -}\ No newline at end of file +} +``` \ No newline at end of file