From: i-ky Date: Fri, 13 Aug 2021 21:07:54 +0000 (+0300) Subject: CODE_STYLE-md: fix bold font style X-Git-Tag: curl-7_79_0~119 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7698a365aed564d8c17d83ca02ddbefde0c2adc8;p=thirdparty%2Fcurl.git CODE_STYLE-md: fix bold font style Markdown gets confused with abundance of asterisks, so use underscores instead. Reviewed-by: Daniel Gustafsson Closes #7569 --- diff --git a/docs/CODE_STYLE.md b/docs/CODE_STYLE.md index f7f453a279..8ba1e038d5 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 */