mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
Fix spelling
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user