From 3349d03db0c2b99b8de1379e14ec31ff8b97c0c5 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 29 Sep 2020 18:01:41 +0200 Subject: [PATCH] tools: fix typo in error message --- tools/doc/checkLinks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/doc/checkLinks.js b/tools/doc/checkLinks.js index f3415f521cc6d5..087fbd2f6b3351 100644 --- a/tools/doc/checkLinks.js +++ b/tools/doc/checkLinks.js @@ -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; }