修改文档书写格式。

This commit is contained in:
Elgar
2021-10-18 10:44:03 +08:00
parent c299b7bbce
commit 14bbc7aac5

View File

@@ -27,7 +27,7 @@ arr[0] = 5;
```c ```c
// const 表示指向的值 *x 不能修改 // const 表示指向的值 *x 不能修改
int const * x int const * x
# 或者 // 或者
const int * x const int * x
``` ```