From 781c484681df877af58163df5cc5b22cd588869c Mon Sep 17 00:00:00 2001 From: Realank Date: Thu, 14 Jan 2016 15:21:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BF=BB=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “You access and modify a string through its methods and properties” 翻译不准确,并且少了一个字“通” --- source/chapter2/03_Strings_and_Characters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter2/03_Strings_and_Characters.md b/source/chapter2/03_Strings_and_Characters.md index 90e0d86d..cc3c8327 100755 --- a/source/chapter2/03_Strings_and_Characters.md +++ b/source/chapter2/03_Strings_and_Characters.md @@ -312,7 +312,7 @@ print("the number of characters in \(word) is \(word.characters.count)") ## 访问和修改字符串 (Accessing and Modifying a String) -你可以通字符串的属性和方法来访问和读取它,当然也可以用下标语法完成。 +你可以通过字符串的属性和方法来访问和修改它,当然也可以用下标语法完成。 ### 字符串索引 (String Indices)