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: