Skip to content

Commit d97c8e8

Browse files
authored
Merge pull request #313 from shati-patel/error-typo
Fix typo in error message
2 parents 76d6ab4 + d8a6368 commit d97c8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/query-history.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export class QueryHistoryManager {
198198
});
199199
} catch (e) {
200200
if (e.message.includes('Files above 50MB cannot be synchronized with extensions')) {
201-
const res = await helpers.showBinaryChoiceDialog('File is too large to open in the editor, do you want to open exterally?');
201+
const res = await helpers.showBinaryChoiceDialog('File is too large to open in the editor, do you want to open it externally?');
202202
if (res) {
203203
try {
204204
await vscode.commands.executeCommand('revealFileInOS', uri);

0 commit comments

Comments
 (0)