From 7f83955f8d16f0a3606745118402b98b8cf8cb53 Mon Sep 17 00:00:00 2001 From: Shiyao Qi Date: Fri, 13 Jun 2014 20:15:54 +0800 Subject: [PATCH] Fixed the wrong translation. Fixed the wrong translation of its. --- 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..ec8eaba7 100644 --- a/source/chapter2/04_Collection_Types.md +++ b/source/chapter2/04_Collection_Types.md @@ -335,7 +335,7 @@ Swift 的字典使用`Dictionary`定义,其中`KeyType`是 var namesOfIntegers = Dictionary() // namesOfIntegers 是一个空的 Dictionary -这个例子创建了一个`Int, String`类型的空字典来储存英语对整数的命名。他的键是`Int`型,值是`String`型。 +这个例子创建了一个`Int, String`类型的空字典来储存英语对整数的命名。它的键是`Int`型,值是`String`型。 如果上下文已经提供了信息类型,我们可以使用空字典字面语句来创建一个空字典,记作`[:]`(中括号中放一个冒号):