Skip to content

Commit db889b9

Browse files
authored
Change the markdown bold ** pairs to html bold tag
It seems going wrong if /\* and \*/ was bounded by \*\*. Suggest that you may developing a tool to check and fix these markdown conflicts when generating the documents.
1 parent 040985d commit db889b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/c-language/c-comments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ translation.priority.ht:
3838
- "zh-tw"
3939
---
4040
# C Comments
41-
A "comment" is a sequence of characters beginning with a forward slash/asterisk combination (**/\***) that is treated as a single white-space character by the compiler and is otherwise ignored. A comment can include any combination of characters from the representable character set, including newline characters, but excluding the "end comment" delimiter (**\*/**). Comments can occupy more than one line but cannot be nested.
41+
A "comment" is a sequence of characters beginning with a forward slash/asterisk combination (<b>/\*</b>) that is treated as a single white-space character by the compiler and is otherwise ignored. A comment can include any combination of characters from the representable character set, including newline characters, but excluding the "end comment" delimiter (<b>\*/</b>). Comments can occupy more than one line but cannot be nested.
4242

4343
Comments can appear anywhere a white-space character is allowed. Since the compiler treats a comment as a single white-space character, you cannot include comments within tokens. The compiler ignores the characters in the comment.
4444

@@ -102,4 +102,4 @@ printf( "Hello\n" ); /* Comments can go here */
102102
**END Microsoft Specific**
103103

104104
## See Also
105-
[C Tokens](../c-language/c-tokens.md)
105+
[C Tokens](../c-language/c-tokens.md)

0 commit comments

Comments
 (0)