Merge pull request #244 from TheLittleBoy/patch-8

代码编写错误修正
This commit is contained in:
ChildhoodAndy
2014-07-06 14:28:53 +08:00

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: