Skip to content

Commit b4fc6a9

Browse files
committed
fix typo
1 parent feb4b89 commit b4fc6a9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/custom-navbar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ If you need custom navigation, you can create a HTML-based navigation bar (but n
1818

1919
## Markdown
2020

21-
Alternatively, you can create a custom markdown-based navigation file by setting `loadNavbar` to **true** and creating `_navbar.md`. Detaile are available in the [load-navbar configuration paragraph](configuration#load-navbar).
21+
Alternatively, you can create a custom markdown-based navigation file by setting `loadNavbar` to **true** and creating `_navbar.md`. Details are available in the [load-navbar configuration paragraph](configuration#load-navbar).
2222

2323
```html
2424
<!-- index.html -->

docs/more-pages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ docs/zh-cn/guide.md => http://domain.com/zh-cn/guide
2525

2626
## Custom sidebar
2727

28-
By default, the table of contents in the sidebar is automatically generated based on your markdown files. If you need a custom sidebar, then you can create your own `sidebar.md` (see [this documentation's sidebar](https://github.com/QingWei-Li/docsify/blob/master/docs/_sidebar.md) for an example):
28+
By default, the table of contents in the sidebar is automatically generated based on your markdown files. If you need a custom sidebar, then you can create your own `_sidebar.md` (see [this documentation's sidebar](https://github.com/QingWei-Li/docsify/blob/master/docs/_sidebar.md) for an example):
2929

3030
First, you need to set `loadSidebar` to **true**. Details are available in the [configuration paragraph](configuration#load-sidebar).
3131

docs/vue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ You can manually initialize a Vue instance.
7676
</template>
7777

7878
<script>
79-
export default {
79+
module.exports = {
8080
data: function () {
8181
return { name: 'Vue' }
8282
}

docs/zh-cn/vue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
</template>
7676

7777
<script>
78-
export default {
78+
module.exports = {
7979
data: function () {
8080
return { name: 'Vue' }
8181
}

0 commit comments

Comments
 (0)