Merge pull request #336 from NickZhangjin/patch-1

Update 14_Initialization.md
This commit is contained in:
梁杰
2014-11-25 21:39:17 +08:00

View File

@ -617,8 +617,8 @@ class SomeClass {
```swift
struct Checkerboard {
let boardColors: Bool[] = {
var temporaryBoard = Bool[]()
let boardColors: [Bool] = {
var temporaryBoard = [Bool]()
var isBlack = false
for i in 1...10 {
for j in 1...10 {