Skip to content

Commit

Permalink
Merge pull request #12419 from effleurager/fix_gitActions_typo
Browse files Browse the repository at this point in the history
Fixed typo in git action error
  • Loading branch information
joaomoreno authored Sep 22, 2016
2 parents f6c1da4 + 3e65c0c commit 6fc7710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/parts/git/browser/gitActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export class OpenFileAction extends GitAction {
}

if (OpenFileAction.DELETED_STATES.indexOf(status.getStatus()) > -1) {
return Promise.wrapError(new Error('Can\'t open file which is has been deleted.'));
return Promise.wrapError(new Error('Can\'t open file which has been deleted.'));
}

const resource = URI.file(paths.join(this.gitService.getModel().getRepositoryRoot(), this.getPath(status)));
Expand Down

0 comments on commit 6fc7710

Please sign in to comment.