From 8789135fd01bfd17d928400cf1db6d88411b0444 Mon Sep 17 00:00:00 2001 From: Per Ryan Edin Date: Thu, 25 Jun 2026 14:58:10 +0200 Subject: [PATCH] Fix indentation --- Programming-Guidelines.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Programming-Guidelines.md b/Programming-Guidelines.md index 191110a..7e28593 100644 --- a/Programming-Guidelines.md +++ b/Programming-Guidelines.md @@ -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; } ```