代码编写错误修正

代码中多写了一个 \   特此修正。
This commit is contained in:
TheLittleBoy
2014-06-29 20:47:27 +08:00
parent ce63ac6968
commit 64c4899b08

View File

@ -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: