diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-09-12 19:46:56 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 19:46:56 +0530 |
commit | d5e97c1ceb91446f9b5b8398d81afa95c83a80c1 (patch) | |
tree | 5de6bb1502900b09ef9f563ca9be79e1e08ae89e | |
parent | fdd5e19dc508de0e6f046256e9160442531c19a4 (diff) | |
parent | e8ff91c87a9bcdba1d5b74c4dd81ccd59f2c0766 (diff) |
Merge pull request #3203 from muxueqz/patch-1
[C/zh-cn] Fix typos
-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 02ec7f7b..8566e811 100644 --- a/zh-cn/c-cn.html.markdown +++ b/zh-cn/c-cn.html.markdown @@ -41,7 +41,7 @@ enum days {SUN = 1, MON, TUE, WED, THU, FRI, SAT}; void function_1(char c); void function_2(void); -// 如果函数调用在main()之后,那么必须在main()之前 +// 如果函数调用在main()之后,那么必须声明在main()之前 // 先声明一个函数原型 int add_two_ints(int x1, int x2); // 函数原型 |