diff options
author | erhu <erhu.cn@qq.com> | 2023-08-25 11:37:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 11:37:22 +0800 |
commit | f472504d5836fb9eae91a4f228bbfb4fb34af60a (patch) | |
tree | f214dbcc81f91681163939dba0c36d39a841fac3 /zh-cn | |
parent | 0c890d7575fc6b0f1cf1b4b09274534ecd2caff4 (diff) |
Update c-cn.html.markdown (#4740)
chore: typedefs to typedef
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/c-cn.html.markdown | 2 |
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; |