diff --git a/naming_formatting.html b/naming_formatting.html index 7c6d69f..84f07ab 100644 --- a/naming_formatting.html +++ b/naming_formatting.html @@ -303,7 +303,7 @@

General Naming Rule Capitalization Rules

Variables and functions start with a lowercase letter.
- Everything else in C++ code (namespaces, type names, constant + Everything else in C++ code (type names, constant expressions) starts with an uppercase letter.

@@ -1145,9 +1145,9 @@

Namespaces

When declaring nested namespaces, put each namespace on its own line.

-
namespace Foo 
+      
namespace foo 
 {
-namespace Bar 
+namespace bar 
 {
 ...
 }