From d5041cebcaa4854753330a02aea058eef4e4eb59 Mon Sep 17 00:00:00 2001 From: Jie Liang Date: Thu, 4 Sep 2014 22:11:11 +0800 Subject: [PATCH] fix some typos --- source/chapter2/12_Subscripts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter2/12_Subscripts.md b/source/chapter2/12_Subscripts.md index 2bca9399..7bef609e 100755 --- a/source/chapter2/12_Subscripts.md +++ b/source/chapter2/12_Subscripts.md @@ -96,7 +96,7 @@ numberOfLegs["bird"] = 2 ```swift struct Matrix { let rows: Int, columns: Int - var grid: Double[] + var grid: [Double] init(rows: Int, columns: Int) { self.rows = rows self.columns = columns