소스 검색

Merge pull request #172 from zouyx/master

修改拼写错误
无闻 10 년 전
부모
커밋
679a4cefed
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      eBook/08.2.md

+ 1 - 1
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")
 	}