Fix @throws documentation tag

This commit is contained in:
Marc Jansen 2022-06-08 23:06:45 +02:00 committed by GitHub
parent cb7afe18ef
commit 2245fa86df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ import * as mtrx from '../matrix/Matrix';
* @param {Matrix} a * @param {Matrix} a
* @param {Matrix} b * @param {Matrix} b
* @returns {number} * @returns {number}
* @trows {Error} * @throws {Error}
*/ */
const euclideanDistance = (a, b) => { const euclideanDistance = (a, b) => {
mtrx.validateSameShape(a, b); mtrx.validateSameShape(a, b);