From 0afb0f0df804d1486e04e8ae8cdc0d8bbd2bee42 Mon Sep 17 00:00:00 2001 From: Sandro Wenzel Date: Mon, 28 Sep 2020 09:43:46 +0200 Subject: [PATCH] Consistency fix for namespace rules --- naming_formatting.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 
 {
 ...
 }