Fix typos

Fixes #56058
This commit is contained in:
Daniel Imms 2018-08-09 09:24:27 -07:00
parent 16aa4bd4c1
commit afec727ae3
2 changed files with 2 additions and 2 deletions

View file

@ -688,7 +688,7 @@ suite('window namespace tests', () => {
const renderer = window.createTerminalRenderer('foo');
});
test('Terminal.sendText should fire Termnial.onInput', (done) => {
test('Terminal.sendText should fire Terminal.onInput', (done) => {
const reg1 = window.onDidOpenTerminal(terminal => {
reg1.dispose();
const reg2 = renderer.onDidAcceptInput(data => {

View file

@ -482,7 +482,7 @@ export class TerminalInstance implements ITerminalInstance {
label: nls.localize('yes', "Yes"),
run: () => {
this._configurationService.updateValue('terminal.integrated.rendererType', 'dom', ConfigurationTarget.USER).then(() => {
this._notificationService.info(nls.localize('terminal.rendererInAllNewTerminals', "The termnial is now using the fallback renderer."));
this._notificationService.info(nls.localize('terminal.rendererInAllNewTerminals', "The terminal is now using the fallback renderer."));
});
}
} as IPromptChoice,