From 470513d07bcf85b0be973f63d6a86e04155756ec Mon Sep 17 00:00:00 2001 From: pengzhanbo Date: Tue, 27 May 2025 17:26:55 +0800 Subject: [PATCH] docs: fix typo error --- docs/notes/theme/config/theme.md | 2 +- docs/notes/theme/guide/quick-start/blog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/notes/theme/config/theme.md b/docs/notes/theme/config/theme.md index 0899fd74..957a4cd3 100644 --- a/docs/notes/theme/config/theme.md +++ b/docs/notes/theme/config/theme.md @@ -664,7 +664,7 @@ type NavItem = string | { { text: 'Group', prefix: '/group/', - item: ['foo/', 'bar/'], + items: ['foo/', 'bar/'], }, // 字符串 - 页面文件路径 '/bar', // 可以直接省略后缀 `.md` diff --git a/docs/notes/theme/guide/quick-start/blog.md b/docs/notes/theme/guide/quick-start/blog.md index 44819dd7..d6035b7f 100644 --- a/docs/notes/theme/guide/quick-start/blog.md +++ b/docs/notes/theme/guide/quick-start/blog.md @@ -457,7 +457,7 @@ export default defineUserConfig({ postList: false, // 禁止生成博客文章列表页 // tagsLink: '/blog/tags/', // categoriesLink: '/blog/categories/', - // archiveLink: '/blog/archives/', + // archivesLink: '/blog/archives/', } }) })