Updated Clang Format Text Style (markdown) authored by williamfgc's avatar williamfgc
......@@ -2,12 +2,12 @@
* Lines no longer than 80 characters.
* Always use braces { and }, even for 1 line <code>if</code> blocks.
* _Don't_
```
```cpp
if( number != 1 )
number = 1;
```
* _Do_
```
```cpp
if( number != 1 )
{
number = 1;
......
......