From b59b18bfff502e89bf7196b1560ebd852d28b267 Mon Sep 17 00:00:00 2001 From: Andrei Rybak Date: Sun, 26 Mar 2023 18:23:17 +0200 Subject: [PATCH] CODINGSTYLE.md: fix list item indentation Signed-off-by: Andrei Rybak --- CODINGSTYLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODINGSTYLE.md b/CODINGSTYLE.md index 41ee5f88d..b8233d091 100644 --- a/CODINGSTYLE.md +++ b/CODINGSTYLE.md @@ -152,7 +152,7 @@ other editors that implement this coding style, please add them here. at the place where the resource is needed. * The `*`, `&` and `&&` declarators are grouped with the name, not the type - (classical C-style) as in `char *string` instead of `char* string`. This + (classical C-style) as in `char *string` instead of `char* string`. This reflects the precedence rules of the language: `int &i` means that the name `i` stands for a reference [to an object with type `int`], not that `i` stands for an object of the type [reference to `int`].