Skip to content

Commit f6d9656

Browse files
committed
Fix two typos
1 parent 0a1a3bf commit f6d9656

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/jupyterlab-lsp/schema/syntax_highlighting.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"title": "Threshold of foreign code coverage for changing the mode in an editor",
1010
"type": "number",
1111
"default": 0.5,
12-
"description": "If a code editor includes a code fragment in another language (for example a %%markdown magic in IPython) with appropriate foreign code extractor defined , and the extend of this code (coverage of the editor) passes the threshold, the syntax highlighting (i.e. the mode) will change to provide highlighting for the language of the foreign code."
12+
"description": "If a code editor includes a code fragment in another language (for example a %%markdown magic in IPython) with appropriate foreign code extractor defined, and the extend of this code (coverage of the editor) passes the threshold, the syntax highlighting (i.e. the mode) will change to provide highlighting for the language of the foreign code."
1313
}
1414
},
1515
"jupyter.lab.shortcuts": []

packages/jupyterlab-lsp/src/components/statusbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ export namespace LSPStatus {
489489
server => server.spec.languages.indexOf(language) !== -1
490490
);
491491
if (servers.length > 1) {
492-
console.warn('More than one server per language for' + language);
492+
console.warn('More than one server per language for', language);
493493
}
494494
if (servers.length === 0) {
495495
continue;

0 commit comments

Comments
 (0)