Skip to content

Commit

Permalink
Merge pull request #117 from Thomas-Smyth/master
Browse files Browse the repository at this point in the history
Missing semi-colon in matrix.js
  • Loading branch information
shiffman authored Apr 25, 2018
2 parents 4766a5b + 1ce9f5a commit cc41638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit cc41638

Please sign in to comment.