Skip to content

Commit ee83821

Browse files
committed
fix remaining prettier issue
1 parent 54977cd commit ee83821

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/createFixtures2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function genModule(prefix, depth, asyncDepth, multiplex, r, circular) {
1414
const isAsync = depth >= asyncDepth;
1515
if (!isAsync) circular.push(path.resolve(fixtures, prefix + "/index.js"));
1616
source.push("(function() {");
17-
const m = r % multiplex + 1;
17+
const m = (r % multiplex) + 1;
1818
let sum = 1;
1919
let item;
2020
try {

0 commit comments

Comments
 (0)