Skip to content

Commit 7eff6a3

Browse files
committed
Fix spelling mistake
1 parent 6983089 commit 7eff6a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/astro.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
33
import starlight from '@astrojs/starlight';
4-
import mtasaStartlightThemePlugin from 'starlight-theme-mtasa'
4+
import mtasaStarlightThemePlugin from 'starlight-theme-mtasa'
55

66
const isDeploy = process.env.GITHUB_ACTIONS === 'true';
77
const ownerName = isDeploy ? process.env.GITHUB_REPOSITORY_NAME : undefined;
@@ -14,7 +14,7 @@ export default defineConfig({
1414
integrations: [
1515
starlight({
1616
title: 'Multi Theft Auto: Theme',
17-
plugins: [mtasaStartlightThemePlugin()],
17+
plugins: [mtasaStarlightThemePlugin()],
1818
social: {
1919
github: 'https://github.com/multitheftauto/starlight-theme-mtasa',
2020
},

packages/starlight-theme-mtasa/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { StarlightPlugin } from '@astrojs/starlight/types';
22

3-
export default function mtasaStartlightThemePlugin(): StarlightPlugin {
3+
export default function mtasaStarlightThemePlugin(): StarlightPlugin {
44
return {
55
name: 'starlight-theme-mtasa',
66
hooks: {

0 commit comments

Comments
 (0)