Skip to content

Commit 59c5300

Browse files
committed
Fix spelling
1 parent 7600192 commit 59c5300

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extensions/typescript-language-features/src/typeScriptServiceClientHost.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
6262
constructor(
6363
descriptions: LanguageDescription[],
6464
context: vscode.ExtensionContext,
65-
onCaseInsenitiveFileSystem: boolean,
65+
onCaseInsensitiveFileSystem: boolean,
6666
services: {
6767
pluginManager: PluginManager,
6868
commandManager: CommandManager,
@@ -82,7 +82,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
8282
const allModeIds = this.getAllModeIds(descriptions, services.pluginManager);
8383
this.client = this._register(new TypeScriptServiceClient(
8484
context,
85-
onCaseInsenitiveFileSystem,
85+
onCaseInsensitiveFileSystem,
8686
services,
8787
allModeIds));
8888

@@ -99,7 +99,7 @@ export default class TypeScriptServiceClientHost extends Disposable {
9999
this.typingsStatus = this._register(new TypingsStatus(this.client));
100100
this._register(LargeProjectStatus.create(this.client));
101101

102-
this.fileConfigurationManager = this._register(new FileConfigurationManager(this.client, onCaseInsenitiveFileSystem));
102+
this.fileConfigurationManager = this._register(new FileConfigurationManager(this.client, onCaseInsensitiveFileSystem));
103103

104104
for (const description of descriptions) {
105105
const manager = new LanguageProvider(this.client, description, this.commandManager, this.client.telemetryReporter, this.typingsStatus, this.fileConfigurationManager, onCompletionAccepted);

0 commit comments

Comments
 (0)