Update 04_Collection_Types.md

Set的for循环中,循环体中的值属性写错了 value -> genre
This commit is contained in:
Gordon
2015-06-16 09:48:41 +08:00
parent 981e5ce3f5
commit eaf346afe3

View File

@ -350,7 +350,7 @@ if favoriteGenres.contains("Funk") {
```swift ```swift
for genre in favoriteGenres { for genre in favoriteGenres {
println("\(value)") println("\(genre)")
} }
// Classical // Classical
// Jazz // Jazz