Skip to content

Commit

Permalink
Fix Grammar mistake. (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
DovydasNavickas authored and chrisdias committed Jan 17, 2018
1 parent 71be438 commit 2fff201
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions commands/build-image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -117,4 +117,4 @@ export async function buildImage(dockerFileUri?: vscode.Uri) {
command: teleCmdId
});
}
}
}

0 comments on commit 2fff201

Please sign in to comment.