Merge pull request #313 from shati-patel/error-typo

Fix typo in error message
This commit is contained in:
Henry Mercer 2020-03-25 10:25:54 +00:00 коммит произвёл GitHub
Родитель 76d6ab4e81 d8a6368e60
Коммит d97c8e864d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -198,7 +198,7 @@ export class QueryHistoryManager {
});
} catch (e) {
if (e.message.includes('Files above 50MB cannot be synchronized with extensions')) {
const res = await helpers.showBinaryChoiceDialog('File is too large to open in the editor, do you want to open exterally?');
const res = await helpers.showBinaryChoiceDialog('File is too large to open in the editor, do you want to open it externally?');
if (res) {
try {
await vscode.commands.executeCommand('revealFileInOS', uri);