From d2707b70634e9a5c36bf0fa2f19b0b59c10d7f8c Mon Sep 17 00:00:00 2001 From: Sergio Lindau <38226617+sergiolindau@users.noreply.github.com> Date: Sun, 1 Oct 2023 06:40:42 -0300 Subject: [PATCH] Initial Commit --- README.md | 2 -- package.json | 2 +- src/multi-array.ts | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f27478b..34315d2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # MathJSLab -[![NPM version][npm-image]][npm-url] -[![npm download][download-image]][download-url] [![DOI](https://zenodo.org/badge/606645564.svg)](https://zenodo.org/badge/latestdoi/606645564) [![MIT License](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://github.com/sergiolindau/mathjslab/blob/master/LICENSE) diff --git a/package.json b/package.json index c80b87a..ccdd1a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjslab", - "version": "1.0.24", + "version": "1.0.25", "description": "MathJSLab - An interpreter with language syntax like MATLAB/Octave", "main": "build/mathjslab.js", "types": "build/src/index.d.ts", diff --git a/src/multi-array.ts b/src/multi-array.ts index 87ff5c9..0d1a7a4 100644 --- a/src/multi-array.ts +++ b/src/multi-array.ts @@ -602,7 +602,7 @@ export class MultiArray { matrix = left; } else { throw new Error( - `operator ${op}: nonconformant arguments (op1 is ${left.dim[0]}x${left.dim[1]}, op2 is ${right.dim[0]}x${right.dim[1]}).`, + `operator ${op}: non-conforming arguments (op1 is ${left.dim[0]}x${left.dim[1]}, op2 is ${right.dim[0]}x${right.dim[1]}).`, ); } const result = new MultiArray([matrix.dim[0], row.dim[1]]);