Skip to content

Commit cabe225

Browse files
fixes typos in README.md
1 parent a6138f0 commit cabe225

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

commands/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ One major concept of the Lumino library on which JupyterLab is built is
88
the notion of _Commands_.
99

1010
They are functions stored in a registry (under an unique
11-
specifier) that can be executed from any piece of code having accessed to that
11+
specifier) that can be executed from any piece of code having access to that
1212
registry.
1313

14-
It is quite common for extension to define one or more such a command.
14+
It is quite common for an extension to define one or more such commands.
1515

1616
In this extension, you are going to add a command to the application command registry.
1717

@@ -65,7 +65,7 @@ when the command is executed. It can optionally takes arguments (arbitrarily def
6565
by the developer).
6666

6767
To execute that command, you only need access to the _Commands Registry_ in any other
68-
parts of application. Then you will need to call the `execute` method of the registry
68+
part of the application. Then you will need to call the `execute` method of the registry
6969
with the unique command id and optionally the arguments.
7070

7171
```ts
@@ -80,7 +80,7 @@ with the unique command id and optionally the arguments.
8080
```
8181

8282
When running JupyterLab with this extension, the following message should
83-
appears in the web browser console and as an alert:
83+
appear in the web browser console as an alert:
8484

8585
```bash
8686
jlab-examples:command has been called from init.

0 commit comments

Comments
 (0)