Skip to content

Commit 2f573ab

Browse files
Remove accidental spaces from error message string
1 parent 72c8e0b commit 2f573ab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/ql-vscode/src/contextual/queryResolver.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ export async function resolveQueries(
9393
const keyTypeTag = tagOfKeyType(keyType);
9494
const joinedPacksToSearch = packsToSearch.join(", ");
9595
const error = redactableError`No ${keyTypeName} queries (tagged "${keyTypeTag}") could be found in the \
96-
current library path (tried searching the following packs: ${joinedPacksToSearch}). \
97-
Try upgrading the CodeQL libraries. If that doesn't work, then ${keyTypeName} queries are not yet available \
98-
for this language.`;
96+
current library path (tried searching the following packs: ${joinedPacksToSearch}). \
97+
Try upgrading the CodeQL libraries. If that doesn't work, then ${keyTypeName} queries are not yet available \
98+
for this language.`;
9999

100100
void showAndLogExceptionWithTelemetry(error);
101101
throw error;

0 commit comments

Comments
 (0)