From c467e4631a43d5749365263222e6095aed15fb4c Mon Sep 17 00:00:00 2001 From: skiy Date: Fri, 23 Oct 2015 14:53:45 +0800 Subject: [PATCH] Update 07.2.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 勘误 --- eBook/07.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/07.2.md b/eBook/07.2.md index 7ba6557..7b5b2c3 100644 --- a/eBook/07.2.md +++ b/eBook/07.2.md @@ -121,7 +121,7 @@ func sum(a []int) int { return s } -func main { +func main() { var arr = [5]int{0, 1, 2, 3, 4} sum(arr[:]) }