From 14bbc7aac5fc182247fb355277d6e2714741625f Mon Sep 17 00:00:00 2001 From: Elgar <45301805+Elgar17@users.noreply.github.com> Date: Mon, 18 Oct 2021 10:44:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E6=A1=A3=E4=B9=A6?= =?UTF-8?q?=E5=86=99=E6=A0=BC=E5=BC=8F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/specifier.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/specifier.md b/docs/specifier.md index e4f3ea7..0e6ece0 100644 --- a/docs/specifier.md +++ b/docs/specifier.md @@ -27,7 +27,7 @@ arr[0] = 5; ```c // const 表示指向的值 *x 不能修改 int const * x -# 或者 +// 或者 const int * x ```