From: Daniel Garcia-Sanchez Date: Mon, 6 Aug 2018 18:11:32 +0000 (+0200) Subject: Use CamelCase in namespaces X-Git-Tag: v9.1.0-rc1~843^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7035%2Fhead;p=dealii.git Use CamelCase in namespaces --- diff --git a/doc/doxygen/headers/coding_conventions.h b/doc/doxygen/headers/coding_conventions.h index d8289c440c..bd1d221cca 100644 --- a/doc/doxygen/headers/coding_conventions.h +++ b/doc/doxygen/headers/coding_conventions.h @@ -148,8 +148,8 @@ executable. @endcode where ClassName is the name of the calling class. -
  • Classes and types generally are named using uppercase letters to denote - word beginnings (e.g. TriaIterator) — sometimes called +
  • Classes, namespaces and types generally are named using uppercase letters + to denote word beginnings (e.g. TriaIterator) — sometimes called camel case — while functions and variables use lowercase letters and underscores to separate words.