Skip to content

Fix 'unkown' typos #76297

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vs/workbench/api/node/extHostCLIServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export class ProcessRunnerDetector {
} else if ('grunt' === detectSpecific) {
detectorPromise = this.tryDetectGrunt(this._workspaceRoot, list);
} else {
throw new Error('Unkown detector type');
throw new Error('Unknown detector type');
}
return detectorPromise.then((value) => {
if (value) {
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/tasks/node/processTaskSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ export class ProcessTaskSystem implements ITaskSystem {
matcher = value;
}
if (!matcher) {
this.appendOutput(nls.localize('unkownProblemMatcher', 'Problem matcher {0} can\'t be resolved. The matcher will be ignored'));
this.appendOutput(nls.localize('unknownProblemMatcher', 'Problem matcher {0} can\'t be resolved. The matcher will be ignored'));
return;
}
if (!matcher.filePrefix) {
Expand Down