File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ const cliMdEnvVarNames = await collectCliMdEnvVarNames();
1414const manpageEnvVarNames = await collectManPageEnvVarNames ( ) ;
1515
1616assert ( 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
2020assert ( 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
2424for ( const envVarName of cliMdEnvVarNames ) {
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments