diff --git a/doc/qtcreatordev/src/coding-style.qdoc b/doc/qtcreatordev/src/coding-style.qdoc index 19adf253d90..10af02db7bf 100644 --- a/doc/qtcreatordev/src/coding-style.qdoc +++ b/doc/qtcreatordev/src/coding-style.qdoc @@ -569,8 +569,7 @@ ... using namespace Utils; - namespace Foo { - namespace Internal { + namespace Foo::Internal { void SomeThing::bar() { @@ -578,8 +577,7 @@ ... } ... - } // namespace Internal // or only // Internal - } // namespace Foo // or only // Foo + } // Foo::Internal // or // namespace Foo::Internal -NOT-