From a0224fcdbe8919332bfcb2e72429d18c0c593262 Mon Sep 17 00:00:00 2001 From: smart Date: Wed, 20 Jan 2016 17:39:48 +0800 Subject: [PATCH] fix 10.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改打印函数 --- eBook/10.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/10.5.md b/eBook/10.5.md index 27032d0..70022ce 100644 --- a/eBook/10.5.md +++ b/eBook/10.5.md @@ -43,7 +43,7 @@ func main() { // 使用结构体字面量 outer2 := outerS{6, 7.5, 60, innerS{5, 10}} - fmt.Printf("outer2 is:", outer2) + fmt.Println("outer2 is:", outer2) } ```