Fix a typo in the error message around language service plugins

This commit is contained in:
Orta Therox
2019-08-01 12:12:26 -04:00
parent 3f75d2c879
commit 777d504580

View File

@@ -1275,7 +1275,7 @@ namespace ts.server {
private enableProxy(pluginModuleFactory: PluginModuleFactory, configEntry: PluginImport) {
try {
if (typeof pluginModuleFactory !== "function") {
this.projectService.logger.info(`Skipped loading plugin ${configEntry.name} because it did expose a proper factory function`);
this.projectService.logger.info(`Skipped loading plugin ${configEntry.name} because it did not expose a proper factory function`);
return;
}