Skip to content

Commit f61cd23

Browse files
committed
fix: add a missing % character
1 parent 238d842 commit f61cd23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ suite
201201
base = benchmark;
202202
}
203203

204-
table.push('|' + benchmark.name + '|' + Math.floor(benchmark.hz) + ' (±' + benchmark.stats.rme.toFixed(2) + ')|' + benchmark.count + '|-' + Math.floor(((base.hz - benchmark.hz) / benchmark.hz) * 100) + '%|');
204+
table.push('|' + benchmark.name + '|' + Math.floor(benchmark.hz) + ' (±' + benchmark.stats.rme.toFixed(2) + '%)|' + benchmark.count + '|-' + Math.floor(((base.hz - benchmark.hz) / benchmark.hz) * 100) + '%|');
205205
}
206206

207207
// eslint-disable-next-line no-console

0 commit comments

Comments
 (0)