summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authori-ky <gl.ivanovsky@gmail.com>2021-08-14 01:02:38 +0300
committerDaniel Stenberg <daniel@haxx.se>2021-08-14 23:10:55 +0200
commita037d278fb874ed9b9812d1238f80a46c8f1571d (patch)
treea447a66fba713d66306dd1db009bf917cbeefe26
parent39de26379527f5dc82c138b90a3ae48c20a0c03a (diff)
downloadcurl-a037d278fb874ed9b9812d1238f80a46c8f1571d.tar.gz
CODE_STYLE-md: add missing comma
Reviewed-by: Daniel Gustafsson Closes #7570
-rw-r--r--docs/CODE_STYLE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CODE_STYLE.md b/docs/CODE_STYLE.md
index e27778e32..f7f453a27 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: