From 0a2f8638361e997ed21613b1ce2cf5050a56e89d Mon Sep 17 00:00:00 2001 From: Kun Liu Date: Thu, 26 Apr 2018 18:29:45 +0800 Subject: [PATCH] Update 08_Data.md --- 08_Data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_Data.md b/08_Data.md index cc53fac..6c59c2c 100644 --- a/08_Data.md +++ b/08_Data.md @@ -136,7 +136,7 @@ v := make([]int, 100) ``` Remember that make applies only to maps, slices and channels and does not return a pointer. To obtain an explicit pointer allocate with new or take the address of a variable explicitly. -请记住,make 只适用于映射、切片和信道且不返回指针。若要获得明确的指针, 请使用 new 分配内存。 +请记住,make 只适用于映射、切片和信道且不返回指针。若要获得明确的指针, 请使用 new 分配内存或显式地获取一个变量的地址。 ### Arrays