Skip to content

Commit

Permalink
tools: fix typo in error message
Browse files Browse the repository at this point in the history
PR-URL: nodejs#35417
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Zeyu Yang <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
  • Loading branch information
aduh95 authored and joesepi committed Oct 22, 2020
1 parent e683979 commit 7f59fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/doc/checkLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function checkFile(path) {
console.error((process.env.GITHUB_ACTIONS ?
`::error file=${path},line=${line},col=${column}::` : '') +
`Unordered reference at ${path}:${line}:${column} (` +
`"${node.label}" should be before "${previousDefinitionLabel})"`
`"${node.label}" should be before "${previousDefinitionLabel}")`
);
process.exitCode = 1;
}
Expand Down

0 comments on commit 7f59fe2

Please sign in to comment.