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 }