fix some typos

This commit is contained in:
Jie Liang
2014-09-04 22:11:11 +08:00
parent dd40ca3220
commit d5041cebca

View File

@ -96,7 +96,7 @@ numberOfLegs["bird"] = 2
```swift ```swift
struct Matrix { struct Matrix {
let rows: Int, columns: Int let rows: Int, columns: Int
var grid: Double[] var grid: [Double]
init(rows: Int, columns: Int) { init(rows: Int, columns: Int) {
self.rows = rows self.rows = rows
self.columns = columns self.columns = columns