Skip to content

Commit

Permalink
Fix a typo in the error message around language service plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Aug 1, 2019
1 parent 3f75d2c commit 777d504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 777d504

Please sign in to comment.