diff --git a/source/chapter2/20_Extensions.md b/source/chapter2/20_Extensions.md index 53bbd67c..1f1f7d8b 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: