Skip to content

Commit 6fc7710

Browse files
authored
Merge pull request microsoft#12419 from effleurager/fix_gitActions_typo
Fixed typo in git action error
2 parents f6c1da4 + 3e65c0c commit 6fc7710

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/parts/git/browser/gitActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export class OpenFileAction extends GitAction {
166166
}
167167

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

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

0 commit comments

Comments
 (0)