benchmark: small lint fix on _cli.js

PR-URL: https://github.com/nodejs/node/pull/59172
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
This commit is contained in:
Rafael Gonzaga 2025-07-24 14:17:52 -03:00 committed by GitHub
parent f389aae2d0
commit d5b815c9ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -140,8 +140,8 @@ CLI.prototype.getCpuCoreSetting = function() {
const isValid = /^(\d+(-\d+)?)(,\d+(-\d+)?)*$/.test(value);
if (!isValid) {
throw new Error(`
Invalid CPUSET format: "${value}". Please use a single core number (e.g., "0"),
a range of cores (e.g., "0-3"), or a list of cores/ranges
Invalid CPUSET format: "${value}". Please use a single core number (e.g., "0"),
a range of cores (e.g., "0-3"), or a list of cores/ranges
(e.g., "0,2,4" or "0-2,4").\n\n${this.usage}
`);
}