From 31a4aac3691071e538ed6d372434059f17a2022c Mon Sep 17 00:00:00 2001 From: neal Date: Sat, 11 Oct 2014 13:50:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E6=AD=A3=20function=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eBook/06.9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/06.9.md b/eBook/06.9.md index 323a211..864fd26 100644 --- a/eBook/06.9.md +++ b/eBook/06.9.md @@ -25,7 +25,7 @@ func main() { fmt.Printf("The result is: %v\n", TwoAdder(3)) } -func Add32() func(b int) int { +func Add2() func(b int) int { return func(b int) int { return b + 2 }