Updated Clang Format Text Style (markdown) authored by williamfgc's avatar williamfgc
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<li><strong>Naming:</strong> Use meaningful English words, well-known acronyms (MPI, XML, CFD, GMRES, etc.), or well-known short names (Config, Comm, 2D, 3D). <li><strong>Naming:</strong> Use meaningful English words, well-known acronyms (MPI, XML, CFD, GMRES, etc.), or well-known short names (Config, Comm, 2D, 3D).
<ul> <ul>
<li>Examples: <strong>initialTime</strong> instead of <strong>tIni</strong> , or <strong>work</strong> instead of <strong>wrk</strong> </li> <li>Examples: <strong>initialTime</strong> instead of <strong>tIni</strong> , or <strong>work</strong> instead of <strong>wrk</strong> </li>
<li>One Exception: when redefining long types with the **using** keyword some mnemonics and short names are allowed, always document scope. <li>One Exception: when redefining long types with the <strong>using</strong> keyword reasonable mnemonics and short names are allowed, always document scope.
```cpp ```cpp
// local 2D Vector of doubles // local 2D Vector of doubles
... ...
......