From 7225d80271cc65bf68b5b4a7b3cf96e47b7587d0 Mon Sep 17 00:00:00 2001 From: Kolja Lampe Date: Thu, 22 Jun 2023 18:30:39 +0200 Subject: [PATCH] docs: fix themeConfig.prism.defaultLanguage table api ref docs (#9082) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Lorber --- website/docs/api/themes/theme-configuration.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/api/themes/theme-configuration.mdx b/website/docs/api/themes/theme-configuration.mdx index 76801a7b8b..8fb5fe4a44 100644 --- a/website/docs/api/themes/theme-configuration.mdx +++ b/website/docs/api/themes/theme-configuration.mdx @@ -767,7 +767,7 @@ Accepted fields: | --- | --- | --- | --- | | `theme` | `PrismTheme` | `palenight` | The Prism theme to use for light-theme code blocks. | | `darkTheme` | `PrismTheme` | `palenight` | The Prism theme to use for dark-theme code blocks. | -| `defaultLanguage` | `string` | `undefined` | The side of the navbar this item should appear on. | +| `defaultLanguage` | `string` | `undefined` | The default language to use for code blocks not declaring any explicit language. | | `magicComments` | `MagicCommentConfig[]` | _see below_ | The list of [magic comments](../../guides/markdown-features/markdown-features-code-blocks.mdx#custom-magic-comments). | ```mdx-code-block