Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 5ef6043

Browse files
committed
chore: fix typo
fix #24
1 parent 8f5d015 commit 5ef6043

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Adding apply custom [document classifiers](https://vuepress-plugin-blog.ulivz.co
166166
```js
167167
module.exports = {
168168
themeConfig: {
169-
modifyBlogPluginOptions(blogPlugnOptions) {
169+
modifyBlogPluginOptions(blogPluginOptions) {
170170
const writingDirectoryClassifier = {
171171
id: 'writing',
172172
dirname: '_writings',
@@ -179,8 +179,8 @@ module.exports = {
179179
},
180180
}
181181

182-
blogPlugnOptions.directories.push(writingDirectoryClassifier)
183-
return blogPlugnOptions
182+
blogPluginOptions.directories.push(writingDirectoryClassifier)
183+
return blogPluginOptions
184184
},
185185
},
186186
}
@@ -190,7 +190,7 @@ Enabling commenting and sitemap:
190190
```js
191191
module.exports = {
192192
themeConfig: {
193-
modifyBlogPluginOptions(blogPlugnOptions) {
193+
modifyBlogPluginOptions(blogPluginOptions) {
194194
const sitemap = {
195195
hostname: 'https://yourdomain'
196196
}

0 commit comments

Comments
 (0)