From 1ce9f5a0bf597c7540be467fdca5de854f161ffd Mon Sep 17 00:00:00 2001 From: Thomas Smyth Date: Wed, 25 Apr 2018 15:29:05 +0100 Subject: [PATCH] Missing semi-colon in matrix.js --- lib/matrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matrix.js b/lib/matrix.js index 34b2d97..b232d36 100644 --- a/lib/matrix.js +++ b/lib/matrix.js @@ -67,7 +67,7 @@ class Matrix { static multiply(a, b) { // Matrix product if (a.cols !== b.rows) { - console.log('Columns of A must match rows of B.') + console.log('Columns of A must match rows of B.'); return; }