Skip to content

Commit

Permalink
🔨 Fix typo in benchmark code (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz authored Jan 12, 2023
1 parent 36c965f commit 5c1ca0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perf/benchmark.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const NUM_RUNS = process.argv[3] || '';
const NUM_INTS = process.argv[4] || '';

const numIterations = Number.isNaN(+NUM_RUNS) ? 1_000 : +NUM_RUNS;
const numInts = Number.isNaN(+NUM_INTS) ? 100 : +NUM_RUNS;
const numInts = Number.isNaN(+NUM_INTS) ? 100 : +NUM_INTS;

console.info(`Generator : ${PROF_GEN}`);
console.info(`Iterations : ${numIterations}`);
Expand Down

0 comments on commit 5c1ca0e

Please sign in to comment.