Skip to content

Commit

Permalink
Use title case in label
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Oct 24, 2021
1 parent d18d08e commit 55d60f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pip install jupyterlab-plugin-playground

## How to use the Plugin Playground

This extension provides a new command, `Load current file as extension`, available in the text editor.
This extension provides a new command, `Load Current File As Extension`, available in the text editor.

As an example, open the text editor by creating a new text file and paste this small JupyterLab plugin into it. This plugin will create a simple command `My Super Cool Toggle` in the command palette that can be toggled on and off.

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const plugin: JupyterFrontEndPlugin<void> = {
const commandID =
'@jupyterlab/plugin-playground:LoadCurrentFileAsExtension';
app.commands.addCommand(commandID, {
label: 'Load current file as extension',
label: 'Load Current File As Extension',
isEnabled: () =>
editorTracker.currentWidget !== null &&
editorTracker.currentWidget === app.shell.currentWidget,
Expand Down

0 comments on commit 55d60f7

Please sign in to comment.