Updated 08 Code Formatting Guidelines (markdown)

lightningterror 2025-04-26 21:04:37 +02:00
parent 18e423bf70
commit d595965699
1 changed files with 2 additions and 1 deletions

@ -44,7 +44,8 @@ It is highly recommended to prefix protected class members with `m_`; such as `m
void DoSomething() { Function1(); Function2(); var += 1; }
// Good...
void DoSomething() {
void DoSomething()
{
Function1(); Function2(); var += 1;
}
```