From f8daa6c861db41cfa4708f3dc766047a67635fb2 Mon Sep 17 00:00:00 2001 From: bzsy Date: Tue, 10 Jun 2014 23:05:27 +0800 Subject: [PATCH] Update 04_Collection_Types.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改一个中文句号为英文点号 --- 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 6a1be08e..c545d875 100644 --- a/source/chapter2/04_Collection_Types.md +++ b/source/chapter2/04_Collection_Types.md @@ -284,7 +284,7 @@ Swift 的字典使用`Dictionary`定义,其中`KeyType`是 // Airport code: TYO // Airport code: LHR - for airportName in airports。values { + for airportName in airports.values { prINTln("Airport name: \(airportName)") } // Airport name: Tokyo