Skip to content

Commit f896722

Browse files
committed
fixup!
1 parent 747c861 commit f896722

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/doctool/test-manpage-envvars.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ const cliMdEnvVarNames = await collectCliMdEnvVarNames();
1414
const manpageEnvVarNames = await collectManPageEnvVarNames();
1515

1616
assert(cliMdEnvVarNames.size > 0,
17-
'Unexpectedly not even a single env variable was detected when scanning the `doc/api/cli.md` file'
17+
'Unexpectedly not even a single env variable was detected when scanning the `doc/api/cli.md` file',
1818
);
1919

2020
assert(manpageEnvVarNames.size > 0,
21-
'Unexpectedly not even a single env variable was detected when scanning the `doc/node.1` file'
21+
'Unexpectedly not even a single env variable was detected when scanning the `doc/node.1` file',
2222
);
2323

2424
for (const envVarName of cliMdEnvVarNames) {

test/doctool/test-manpage-options.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ for await (const line of rl) {
5050
flagNames.length === 1 ? '' : 's'
5151
} (present in \`doc/api/cli.md\`) ${flagNames.length === 1 ? 'is' : 'are'} missing in the \`doc/node.1\` file: ${
5252
flagNames.map((flag) => `"-${flag}"`).join(', ')
53-
}`
53+
}`,
5454
);
5555
}
5656
}

0 commit comments

Comments
 (0)