Skip to content

Commit

Permalink
Merge pull request #35833 from squgeim/patch-1
Browse files Browse the repository at this point in the history
Fixed a typo in the comments
  • Loading branch information
jrieken authored Oct 9, 2017
2 parents e29c517 + 33c255f commit 99d0e0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/code/electron-main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function setupIPC(accessor: ServicesAccessor): TPromise<Server> {

// it happens on Linux and OS X that the pipe is left behind
// let's delete it, since we can't connect to it
// and the retry the whole thing
// and then retry the whole thing
try {
fs.unlinkSync(environmentService.mainIPCHandle);
} catch (e) {
Expand Down Expand Up @@ -214,4 +214,4 @@ function main() {
}).done(null, err => instantiationService.invokeFunction(quit, err));
}

main();
main();

0 comments on commit 99d0e0e

Please sign in to comment.