Fix spelling

This commit is contained in:
Matt Bierner 2021-02-01 14:49:14 -08:00
parent 4e00f75408
commit 8c3e6cd9ee

View file

@ -19,7 +19,7 @@ import { PluginManager } from './utils/plugins';
export function createLazyClientHost(
context: vscode.ExtensionContext,
onCaseInsenitiveFileSystem: boolean,
onCaseInsensitiveFileSystem: boolean,
services: {
pluginManager: PluginManager,
commandManager: CommandManager,
@ -34,7 +34,7 @@ export function createLazyClientHost(
const clientHost = new TypeScriptServiceClientHost(
standardLanguageDescriptions,
context,
onCaseInsenitiveFileSystem,
onCaseInsensitiveFileSystem,
services,
onCompletionAccepted);