Skip to content

Commit 0abf8dc

Browse files
committed
Fix typo
1 parent 62468cb commit 0abf8dc

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

extensions/html-language-features/.vscode/launch.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
],
1818
"stopOnEntry": false,
1919
"sourceMaps": true,
20-
"outFiles": ["${workspaceFolder}/client/out/**/*.js"],
21-
"preLaunchTask": "npm"
20+
"outFiles": ["${workspaceFolder}/client/out/**/*.js"]
2221
},
2322
{
2423
"name": "Launch Tests",
@@ -28,8 +27,7 @@
2827
"args": ["--extensionDevelopmentPath=${workspaceFolder}", "--extensionTestsPath=${workspaceFolder}/client/out/test" ],
2928
"stopOnEntry": false,
3029
"sourceMaps": true,
31-
"outFiles": ["${workspaceFolder}/client/out/test/**/*.js"],
32-
"preLaunchTask": "npm"
30+
"outFiles": ["${workspaceFolder}/client/out/test/**/*.js"]
3331
},
3432
{
3533
"name": "Attach Language Server",

extensions/html-language-features/server/src/customData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function getDataProviders(dataPaths?: string[]): IHTMLDataProvider[] {
2121
providers.push(new HTMLDataProvider(`customProvider${i}`, htmlData));
2222
}
2323
} catch (err) {
24-
console.log(`Failed to laod tag from ${path}`);
24+
console.log(`Failed to load tag from ${path}`);
2525
}
2626
});
2727

0 commit comments

Comments
 (0)