1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

Update c-cn.html.markdown (#4740)

chore: typedefs to typedef
This commit is contained in:
erhu 2023-08-25 11:37:22 +08:00 committed by GitHub
parent 0c890d7575
commit f472504d58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -474,7 +474,7 @@ void testFunc() {
// 用户自定义类型和结构
///////////////////////////////////////
// Typedefs可以创建类型别名
// typedef 可以创建类型别名
typedef int my_type;
my_type my_type_var = 0;