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
if (condition) {
single_statement;
single_statement;
}
```
@@ -67,7 +67,7 @@ should be split with the parameter names right aligned.
string
my_function()
{
// ...
// ...
}
string
@@ -75,7 +75,7 @@ my_class::
my_function(my_first_type arg_0,
my_second_type const& arg_1)
{
// ...
// ...
}
```
@@ -175,7 +175,7 @@ Curly braces are used for all statement blocks, even single statements.
```cxx
if (condition) {
single_statement;
single_statement;
}
```