Fix spelling

This commit is contained in:
Matt Bierner 2021-11-17 12:47:23 -08:00
parent 7600192459
commit 59c53002de
No known key found for this signature in database
GPG key ID: 099C331567E11888

View file

@ -62,7 +62,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
constructor(
descriptions: LanguageDescription[],
context: vscode.ExtensionContext,
onCaseInsenitiveFileSystem: boolean,
onCaseInsensitiveFileSystem: boolean,
services: {
pluginManager: PluginManager,
commandManager: CommandManager,
@ -82,7 +82,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
const allModeIds = this.getAllModeIds(descriptions, services.pluginManager);
this.client = this._register(new TypeScriptServiceClient(
context,
onCaseInsenitiveFileSystem,
onCaseInsensitiveFileSystem,
services,
allModeIds));
@ -99,7 +99,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
this.typingsStatus = this._register(new TypingsStatus(this.client));
this._register(LargeProjectStatus.create(this.client));
this.fileConfigurationManager = this._register(new FileConfigurationManager(this.client, onCaseInsenitiveFileSystem));
this.fileConfigurationManager = this._register(new FileConfigurationManager(this.client, onCaseInsensitiveFileSystem));
for (const description of descriptions) {
const manager = new LanguageProvider(this.client, description, this.commandManager, this.client.telemetryReporter, this.typingsStatus, this.fileConfigurationManager, onCompletionAccepted);