修改一处println的更新,完成嵌套类型的修改和更新。

This commit is contained in:
chenYuheng
2015-07-01 21:44:44 +08:00
parent 2380574b4e
commit aee32488e2

View File

@ -76,7 +76,7 @@ struct BlackjackCard {
```swift
let theAceOfSpades = BlackjackCard(rank: .Ace, suit: .Spades)
println("theAceOfSpades: \(theAceOfSpades.description)")
print("theAceOfSpades: \(theAceOfSpades.description)")
// 打印出 "theAceOfSpades: suit is ♠, value is 1 or 11"
```