From 1ddbcb828ca76759a06d2a2636e4da7da0471d3f Mon Sep 17 00:00:00 2001 From: Dovydas Navickas Date: Wed, 17 Jan 2018 11:20:48 +0200 Subject: [PATCH] Grammar mistake. --- commands/build-image.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/build-image.ts b/commands/build-image.ts index 4fbbf71311..744de07bd5 100644 --- a/commands/build-image.ts +++ b/commands/build-image.ts @@ -63,9 +63,9 @@ export async function buildImage(dockerFileUri?: vscode.Uri) { if (!folder) { if (!vscode.workspace.workspaceFolders) { - vscode.window.showErrorMessage('Docker files can only be build if VS Code is opened on a folder.'); + vscode.window.showErrorMessage('Docker files can only be built if VS Code is opened on a folder.'); } else { - vscode.window.showErrorMessage('Docker files can only be build if a workspace folder is picked in VS Code.'); + vscode.window.showErrorMessage('Docker files can only be built if a workspace folder is picked in VS Code.'); } return; } @@ -117,4 +117,4 @@ export async function buildImage(dockerFileUri?: vscode.Uri) { command: teleCmdId }); } -} \ No newline at end of file +}