From 64c4899b08d26299af4d3bda919d867cb8da0696 Mon Sep 17 00:00:00 2001 From: TheLittleBoy Date: Sun, 29 Jun 2014 20:47:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E7=BC=96=E5=86=99=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 代码中多写了一个 \ 特此修正。 --- source/chapter2/20_Extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter2/20_Extensions.md b/source/chapter2/20_Extensions.md index 71e493d9..d2c8160c 100755 --- a/source/chapter2/20_Extensions.md +++ b/source/chapter2/20_Extensions.md @@ -275,7 +275,7 @@ extension Character { ```swift func printLetterKinds(word: String) { - println("'\\(word)' is made up of the following kinds of letters:") + println("'\(word)' is made up of the following kinds of letters:") for character in word { switch character.kind { case .Vowel: