From a037d278fb874ed9b9812d1238f80a46c8f1571d Mon Sep 17 00:00:00 2001 From: i-ky Date: Sat, 14 Aug 2021 01:02:38 +0300 Subject: [PATCH] CODE_STYLE-md: add missing comma Reviewed-by: Daniel Gustafsson Closes #7570 --- docs/CODE_STYLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CODE_STYLE.md b/docs/CODE_STYLE.md index e27778e32e..f7f453a279 100644 --- a/docs/CODE_STYLE.md +++ b/docs/CODE_STYLE.md @@ -174,7 +174,7 @@ else if(b) return FALSE; ## Space around operators Please use spaces on both sides of operators in C expressions. Postfix **(), -[], ->, ., ++, --** and Unary **+, - !, ~, &** operators excluded they should +[], ->, ., ++, --** and Unary **+, -, !, ~, &** operators excluded they should have no space. Examples: -- 2.47.3