Skip to content

Commit

Permalink
Changing typo "Array" instance to "Float64Array" (#24854)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcolloran authored and ViralBShah committed Nov 30, 2017
1 parent 171005c commit 655e124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/perf/micro/perf.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@

function matmul(A,B,m,l,n) {
var C, i, j, k, total;
C = new Array(m*n);
C = new Float64Array(m*n);
i = 0;
j = 0;
k = 0;
Expand Down

0 comments on commit 655e124

Please sign in to comment.