Fix 'unkown' typos (#76297)

Because of this typo, the same localization string was duplicated:
* 'unkownProblemMatcher' referenced in processTaskSystem.ts
* 'unknownProblemMatcher' referenced in terminalTaskSystem.ts
This commit is contained in:
Julien Brianceau
2019-07-01 09:55:06 +02:00
committed by Alex Ross
parent 39292af2b5
commit 59963fc1c0
3 changed files with 3 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ export class CLIServer {
break;
default:
res.writeHead(404);
res.write(`Unkown message type: ${data.type}`, err => {
res.write(`Unknown message type: ${data.type}`, err => {
if (err) {
console.error(err);
}