Skip to content

Commit 4136d50

Browse files
thegoomanjtpio
authored andcommitted
Fixed prettier formatting
1 parent a4396c7 commit 4136d50

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

advanced/kernel-output/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ the kernel) is started with these lines:
5555
this._sessionContext = new SessionContext({
5656
sessionManager: manager.sessions,
5757
specsManager: manager.kernelspecs,
58-
name: 'Kernel Output',
58+
name: 'Kernel Output'
5959
});
6060
```
6161

@@ -129,7 +129,7 @@ the data to show:
129129
this._outputareamodel = new OutputAreaModel();
130130
this._outputarea = new SimplifiedOutputArea({
131131
model: this._outputareamodel,
132-
rendermime: rendermime,
132+
rendermime: rendermime
133133
});
134134
```
135135

@@ -188,7 +188,7 @@ on a list:
188188
// src/index.ts#L110-L114
189189

190190
// add items in command palette and menu
191-
[CommandIDs.create, CommandIDs.execute].forEach((command) => {
191+
[CommandIDs.create, CommandIDs.execute].forEach(command => {
192192
palette.addItem({ command, category });
193193
exampleMenu.addItem({ command });
194194
});
@@ -245,14 +245,14 @@ commands.addCommand(CommandIDs.execute, {
245245
const input = await InputDialog.getText({
246246
title: trans.__('Code to execute'),
247247
okLabel: trans.__('Execute'),
248-
placeholder: trans.__('Statement to execute'),
248+
placeholder: trans.__('Statement to execute')
249249
});
250250
// Execute the statement
251251
if (input.button.accept) {
252252
const code = input.value;
253253
panel.execute(code);
254254
}
255-
},
255+
}
256256
});
257257
```
258258

0 commit comments

Comments
 (0)