From 496e80a4687cd57d67e51dd3f1ed7daa74572e5e Mon Sep 17 00:00:00 2001 From: astaxie Date: Wed, 29 Aug 2012 13:55:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=99=E5=88=AB=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.3.md b/2.3.md index f3718475..505c72fc 100644 --- a/2.3.md +++ b/2.3.md @@ -41,7 +41,7 @@ Go有goto语句——请明智的使用它。用goto跳转到一定是当前函 func myfunc() { i := 0 - Here: //这行的第一个词,以分号结束作为标签 + Here: //这行的第一个词,以冒号结束作为标签 println(i) i++ goto Here //跳转到Here去