From 7698a365aed564d8c17d83ca02ddbefde0c2adc8 Mon Sep 17 00:00:00 2001 From: i-ky Date: Sat, 14 Aug 2021 00:07:54 +0300 Subject: [PATCH] CODE_STYLE-md: fix bold font style Markdown gets confused with abundance of asterisks, so use underscores instead. Reviewed-by: Daniel Gustafsson Closes #7569 --- 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 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 */