Skip to content

Commit 655e124

Browse files
bcolloranViralBShah
authored andcommitted
Changing typo "Array" instance to "Float64Array" (#24854)
see #24680 (comment)
1 parent 171005c commit 655e124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/perf/micro/perf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@
404404

405405
function matmul(A,B,m,l,n) {
406406
var C, i, j, k, total;
407-
C = new Array(m*n);
407+
C = new Float64Array(m*n);
408408
i = 0;
409409
j = 0;
410410
k = 0;

0 commit comments

Comments
 (0)