mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
css/html/json typos (for #47894)
This commit is contained in:
@@ -62,7 +62,7 @@ documents.listen(connection);
|
||||
let clientSnippetSupport = false;
|
||||
let clientDynamicRegisterSupport = false;
|
||||
|
||||
// After the server has started the client sends an initilize request. The server receives
|
||||
// After the server has started the client sends an initialize request. The server receives
|
||||
// in the passed params the rootPath of the workspace plus the client capabilities.
|
||||
connection.onInitialize((params: InitializeParams): InitializeResult => {
|
||||
|
||||
|
||||
@@ -77,7 +77,7 @@ suite('JSON Folding', () => {
|
||||
assertRanges(input, [r(0, 4, 'array'), r(2, 3, 'array')]);
|
||||
});
|
||||
|
||||
test('Fold commment', () => {
|
||||
test('Fold comment', () => {
|
||||
let input = [
|
||||
/*0*/'/*',
|
||||
/*1*/' multi line',
|
||||
@@ -86,7 +86,7 @@ suite('JSON Folding', () => {
|
||||
assertRanges(input, [r(0, 2, 'comment')]);
|
||||
});
|
||||
|
||||
test('Incomplete commment', () => {
|
||||
test('Incomplete comment', () => {
|
||||
let input = [
|
||||
/*0*/'/*',
|
||||
/*1*/'{',
|
||||
|
||||
Reference in New Issue
Block a user