summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authori-ky <gl.ivanovsky@gmail.com>2021-08-14 00:07:54 +0300
committerDaniel Stenberg <daniel@haxx.se>2021-08-14 23:12:21 +0200
commit7698a365aed564d8c17d83ca02ddbefde0c2adc8 (patch)
tree29adbba0a9f4d2b7aa1980f1c0b17c2b98849dfe
parenta037d278fb874ed9b9812d1238f80a46c8f1571d (diff)
downloadcurl-7698a365aed564d8c17d83ca02ddbefde0c2adc8.tar.gz
CODE_STYLE-md: fix bold font style
Markdown gets confused with abundance of asterisks, so use underscores instead. Reviewed-by: Daniel Gustafsson Closes #7569
-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 f7f453a27..8ba1e038d 100644
--- a/docs/CODE_STYLE.md
+++ b/docs/CODE_STYLE.md
@@ -47,7 +47,7 @@ if(something_is_true) {
## Comments
Since we write C89 code, **//** comments are not allowed. They weren't
-introduced in the C standard until C99. We use only **/* comments */**.
+introduced in the C standard until C99. We use only __/* comments */__.
```c
/* this is a comment */