From 2717c7775af9b5d5c0bac0bd1a3b2eeb38a8f7c9 Mon Sep 17 00:00:00 2001 From: Kevin Date: Fri, 1 Oct 2021 11:12:44 +0800 Subject: [PATCH] docs(theming.md): fix spelling and grammar errors --- docs/guide/theming.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/theming.md b/docs/guide/theming.md index 7f9fdcfc..5797f843 100644 --- a/docs/guide/theming.md +++ b/docs/guide/theming.md @@ -31,7 +31,7 @@ interface EnhanceAppContext { } ``` -The theme entry file shoud export the theme as its default export: +The theme entry file should export the theme as its default export: ```js // .vitepress/theme/index.js @@ -47,7 +47,7 @@ export default { } ``` -...where the `Layout` component could like this: +...where the `Layout` component could look like this: ```vue