fix struct name typo error.

fix #7
This commit is contained in:
Qiyuan Jiao
2021-09-07 21:57:11 +08:00
committed by GitHub
parent 4cf8979089
commit 0edb569995

View File

@@ -264,7 +264,7 @@ myStruct.prop == (*ptr).prop == ptr->prop
struct 结构的成员可以是另一个 struct 结构。
```c
struct breed {
struct species {
char* name;
int kinds;
};