benchmark: small lint fix on _cli.js · nodejs/node@a28d804

Original file line numberDiff line numberDiff line change

@@ -140,8 +140,8 @@ CLI.prototype.getCpuCoreSetting = function() {

140140

const isValid = /^(\d+(-\d+)?)(,\d+(-\d+)?)*$/.test(value);

141141

if (!isValid) {

142142

throw new Error(`

143-

Invalid CPUSET format: "${value}". Please use a single core number (e.g., "0"),

144-

a range of cores (e.g., "0-3"), or a list of cores/ranges

143+

Invalid CPUSET format: "${value}". Please use a single core number (e.g., "0"),

144+

a range of cores (e.g., "0-3"), or a list of cores/ranges

145145

(e.g., "0,2,4" or "0-2,4").\n\n${this.usage}

146146

`);

147147

}