From d27f6e31bb5f739682d6e2fab7d607a973e7ea1a Mon Sep 17 00:00:00 2001 From: joezou Date: Mon, 2 Nov 2015 22:39:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eBook/08.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/08.2.md b/eBook/08.2.md index 7e1fdcf..e526502 100644 --- a/eBook/08.2.md +++ b/eBook/08.2.md @@ -46,7 +46,7 @@ func main() { map1["Washington"] = 25 value, isPresent = map1["Beijing"] if isPresent { - fmt.Printf("The value of \"Beijin\" in map1 is: %d\n", value) + fmt.Printf("The value of \"Beijing\" in map1 is: %d\n", value) } else { fmt.Printf("map1 does not contain Beijing") }