Fix indentation

2026-06-25 14:58:10 +02:00
parent b4319cb770
commit 8789135fd0
+4 -4
@@ -38,7 +38,7 @@ Curly braces are used for all statement blocks, even single statements.
```cxx ```cxx
if (condition) { if (condition) {
single_statement; single_statement;
} }
``` ```
@@ -67,7 +67,7 @@ should be split with the parameter names right aligned.
string string
my_function() my_function()
{ {
// ... // ...
} }
string string
@@ -75,7 +75,7 @@ my_class::
my_function(my_first_type arg_0, my_function(my_first_type arg_0,
my_second_type const& arg_1) my_second_type const& arg_1)
{ {
// ... // ...
} }
``` ```
@@ -175,7 +175,7 @@ Curly braces are used for all statement blocks, even single statements.
```cxx ```cxx
if (condition) { if (condition) {
single_statement; single_statement;
} }
``` ```