From ade4a0f1db7ff3f6edcb4b203763a82e85a27317 Mon Sep 17 00:00:00 2001 From: roller44 Date: Mon, 25 Jul 2016 21:10:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E7=BB=83=E4=B9=A0=206.53=20?= =?UTF-8?q?=E7=BC=BA=E5=B0=91=E7=9A=84=E6=B3=A8=E9=87=8A=E7=AC=A6=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ch06/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch06/README.md b/ch06/README.md index 4854d044..dee31c1e 100644 --- a/ch06/README.md +++ b/ch06/README.md @@ -340,7 +340,7 @@ int calc(const int&, const int&); // calls lookup(const int&) (b) ```cpp int calc(char*, char*); // calls lookup(char*) -int calc(const char*, const char*); calls lookup(const char *) +int calc(const char*, const char*); //calls lookup(const char *) ``` (c)