From 994433ea7c839ef65fdb11f4e11f589897bb9d17 Mon Sep 17 00:00:00 2001 From: vv1133 Date: Sat, 19 Mar 2016 15:19:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E6=AD=A3=E5=8F=98=E9=87=8F=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eBook/10.2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eBook/10.2.md b/eBook/10.2.md index 49e3b05..35f9011 100644 --- a/eBook/10.2.md +++ b/eBook/10.2.md @@ -93,8 +93,8 @@ func main() { // NOT OK z := make(Bar) // 编译错误:cannot make type Bar - (*y).thingOne = "hello" - (*y).thingTwo = 1 + (*z).thingOne = "hello" + (*z).thingTwo = 1 // OK x := make(Foo)