Skip to content

Commit 4436f5a

Browse files
committed
Fix typo
1 parent 0fc5697 commit 4436f5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/vscode-tailwindcss/src/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ export async function createApi({ context, outputChannel }: ApiOptions) {
3636
return result
3737
}
3838

39-
async function stylesheeNeedsLanguageServer(uri: Uri) {
39+
async function stylesheetNeedsLanguageServer(uri: Uri) {
4040
outputChannel.appendLine(`Checking if ${uri.fsPath} may be Tailwind-related…`)
4141

4242
return fileMayBeTailwindRelated(uri)
4343
}
4444

4545
return {
4646
workspaceNeedsLanguageServer,
47-
stylesheeNeedsLanguageServer,
47+
stylesheetNeedsLanguageServer,
4848
}
4949
}

packages/vscode-tailwindcss/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export async function activate(context: ExtensionContext) {
230230
if (!folder || isExcluded(uri.fsPath, folder)) {
231231
return
232232
}
233-
if (await api.stylesheeNeedsLanguageServer(uri)) {
233+
if (await api.stylesheetNeedsLanguageServer(uri)) {
234234
await bootWorkspaceClient()
235235
}
236236
}

0 commit comments

Comments
 (0)