Skip to content

Commit dbdf2aa

Browse files
committed
Fix typos in Extending docs
1 parent 6559be9 commit dbdf2aa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/Extending.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"#### How to override the default implementation of a feature?\n",
4747
"\n",
4848
"You can specify a list of extensions to be disabled the the feature manager\n",
49-
"passing their plugin identifiers in `superseds` field of `IFeatureOptions`."
49+
"passing their plugin identifiers in `supersedes` field of `IFeatureOptions`."
5050
]
5151
},
5252
{
@@ -64,7 +64,7 @@
6464
"\n",
6565
"#### Why virtual editor?\n",
6666
"\n",
67-
"The vitual editor takes multiple instances of your editor (e.g. in a notebook)\n",
67+
"The virtual editor takes multiple instances of your editor (e.g. in a notebook)\n",
6868
"and makes them act like a single editor. For example, when \"onKeyPress\" event is\n",
6969
"bound on the VirtualEditor instance, it should be bound onto each actual code\n",
7070
"editor; this allows the features to be implemented without the knowledge about\n",
@@ -89,7 +89,7 @@
8989
"`IDocumentWidget` interface. Each such widget has to adapted by a\n",
9090
"`WidgetAdapter` to enable its use with the LSP extension. The role of the\n",
9191
"`WidgetAdapter` is to extract the document metadata (language, mimetype) and the\n",
92-
"underyling code editor (e.g. CodeMirror or Monaco) instances so that other parts\n",
92+
"underlying code editor (e.g. CodeMirror or Monaco) instances so that other parts\n",
9393
"of the LSP extension can interface with them without knowing about the\n",
9494
"implementation details of the DocumentWidget (or even about the existence of a\n",
9595
"Notebook construct!).\n",
@@ -110,7 +110,7 @@
110110
"\n",
111111
"It is now possible to register custom code replacements using\n",
112112
"`ILSPCodeOverridesManager` token and to register custom foreign code extractors\n",
113-
"using `ILSPCodeExtractorsManager` token, however this API is conssidered\n",
113+
"using `ILSPCodeExtractorsManager` token, however this API is considered\n",
114114
"provisional and subject to change.\n",
115115
"\n",
116116
"#### Future plans for transclusions handling\n",
@@ -145,7 +145,7 @@
145145
"2. Prepare `CompletionKind` → `IconSvgString` mapping for the light (and\n",
146146
" optionally dark) theme, implementing the `ICompletionIconSet` interface. We\n",
147147
" have an additional `Kernel` completion kind that is used for completions\n",
148-
" provided by kernel that had no recognisable type provided.\n",
148+
" provided by kernel that had no recognizable type provided.\n",
149149
"\n",
150150
"3. Provide all other metadata required by the `ICompletionTheme` interface and\n",
151151
" register it on `ILSPCompletionThemeManager` instance using `register_theme()`\n",
@@ -154,7 +154,7 @@
154154
"4. Provide any additional CSS styling targeting the JupyterLab completer\n",
155155
" elements inside of `.lsp-completer-theme-{id}`, e.g.\n",
156156
" `.lsp-completer-theme-material .jp-Completer-icon svg` for the material\n",
157-
" theme. Rememmber to include the styles by importing the in one of the source\n",
157+
" theme. Remember to include the styles by importing the in one of the source\n",
158158
" files.\n",
159159
"\n",
160160
"For an example of a complete theme see\n",

0 commit comments

Comments
 (0)