summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorerhu <erhu.cn@qq.com>2023-08-25 11:37:22 +0800
committerGitHub <noreply@github.com>2023-08-25 11:37:22 +0800
commitf472504d5836fb9eae91a4f228bbfb4fb34af60a (patch)
treef214dbcc81f91681163939dba0c36d39a841fac3
parent0c890d7575fc6b0f1cf1b4b09274534ecd2caff4 (diff)
Update c-cn.html.markdown (#4740)
chore: typedefs to typedef
-rw-r--r--zh-cn/c-cn.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/c-cn.html.markdown b/zh-cn/c-cn.html.markdown
index dd4445f7..851f2981 100644
--- a/zh-cn/c-cn.html.markdown
+++ b/zh-cn/c-cn.html.markdown
@@ -474,7 +474,7 @@ void testFunc() {
// 用户自定义类型和结构
///////////////////////////////////////
-// Typedefs可以创建类型别名
+// typedef 可以创建类型别名
typedef int my_type;
my_type my_type_var = 0;