From 97c6a9f796d601dc4c89a76bf6fd18fb90682a97 Mon Sep 17 00:00:00 2001 From: joezou Date: Mon, 26 Oct 2015 22:13:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AD=97=E7=AC=A6=E4=B8=B2?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E6=96=B9=E6=B3=95=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eBook/06.4.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eBook/06.4.md b/eBook/06.4.md index b0682cf..1235ed0 100644 --- a/eBook/06.4.md +++ b/eBook/06.4.md @@ -15,13 +15,13 @@ func main() { } func function1() { - fmt.Printf("In Function1 at the top\n") + fmt.Printf("In function1 at the top\n") defer function2() - fmt.Printf("In Function1 at the bottom!\n") + fmt.Printf("In function1 at the bottom!\n") } func function2() { - fmt.Printf("Function2: Deferred until the end of the calling function!") + fmt.Printf("function2: Deferred until the end of the calling function!") } ```