8000 Fix @throws documentation tag · marcjansen/javascript-algorithms@2245fa8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2245fa8

Browse files
authored
Fix @throws documentation tag
1 parent cb7afe1 commit 2245fa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/algorithms/math/euclidean-distance/euclideanDistance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import * as mtrx from '../matrix/Matrix';
1010
* @param {Matrix} a
1111
* @param {Matrix} b
1212
* @returns {number}
13-
* @trows {Error}
13+
* @throws {Error}
1414
*/
1515
const euclideanDistance = (a, b) => {
1616
mtrx.validateSameShape(a, b);

0 commit comments

Comments
 (0)
0