From 8013ab1cf2fbd0db51d6b2090b7acf2716a43f00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BF=9F=E7=89=B9=E7=89=B9?= Date: Wed, 19 Jan 2022 05:37:23 +0000 Subject: [PATCH] update en/contribute/OpenHarmony-c-coding-style-guide.md. Signed-off-by: user.name --- en/contribute/OpenHarmony-c-coding-style-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/contribute/OpenHarmony-c-coding-style-guide.md b/en/contribute/OpenHarmony-c-coding-style-guide.md index db98d92b2b3..72c52814574 100755 --- a/en/contribute/OpenHarmony-c-coding-style-guide.md +++ b/en/contribute/OpenHarmony-c-coding-style-guide.md @@ -238,8 +238,8 @@ typedef struct { // Good: The anonymous struct is used because self-nesting i int a; int b; } MyType; // The struct alias uses the UpperCamelCase style. - -​```c +``` +```c typedef struct tagNode { // Good: Add the 'tag' prefix or use 'Node_'. struct tagNode *prev; struct tagNode *next; -- Gitee