Skip to content

Commit

Permalink
Add missing comma in Pseudoterminal types
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Sep 3, 2019
1 parent 250c58e commit 730f47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/vscode.proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ declare module 'vscode' {
* onDidWrite: writeEmitter.event,
* onDidClose: closeEmitter.event,
* open: () => writeEmitter.fire('Press y to exit successfully'),
* close: () => {}
* close: () => {},
* handleInput: data => {
* if (data !== 'y') {
* vscode.window.showInformationMessage('Something went wrong');
Expand Down

0 comments on commit 730f47d

Please sign in to comment.