From bdabcc5c24b3ab26c5c201d738fcc15f3d9d7c65 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Tue, 6 Oct 2015 13:00:01 -0400 Subject: [PATCH] Matrix.values is private. --- prototype/Doubt/Matrix.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prototype/Doubt/Matrix.swift b/prototype/Doubt/Matrix.swift index e56bb7d5c..9b109f6c5 100644 --- a/prototype/Doubt/Matrix.swift +++ b/prototype/Doubt/Matrix.swift @@ -20,7 +20,7 @@ struct Matrix { let width: Int let height: Int - let values: [Memo] + private let values: [Memo] subscript (i: Int, j: Int) -> Memo? { guard i < width && j < height else { return nil }