From 531375a132b509a0335c742f49d30ac600440a3c Mon Sep 17 00:00:00 2001 From: Shiyao Qi Date: Fri, 13 Jun 2014 19:51:38 +0800 Subject: [PATCH] Correction the wrong spelling. Correction the wrong spelling. --- source/chapter2/04_Collection_Types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter2/04_Collection_Types.md b/source/chapter2/04_Collection_Types.md index 54c13db9..f2701fd5 100644 --- a/source/chapter2/04_Collection_Types.md +++ b/source/chapter2/04_Collection_Types.md @@ -271,7 +271,7 @@ Swift 的字典使用`Dictionary`定义,其中`KeyType`是 } else { println("That airport is not in the airports dictionary.") } - // 打印 "The name of the airport is Dublin INTernation."(机场的名字是都柏林国际) + // 打印 "The name of the airport is Dublin Internation."(机场的名字是都柏林国际) 我们还可以使用下标语法来通过给某个键的对应值赋值为`nil`来从字典里移除一个键值对: