Skip to content

Commit 3a800b6

Browse files
committed
update/
1 parent 8a58bd3 commit 3a800b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: docs/configuration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ window.$docsify = {
102102

103103
Determines if Docsify should handle uncaught _synchronous_ plugin errors automatically. This can prevent plugin errors from affecting docsify's ability to properly render live site content.
104104

105-
## cornerExternalLinkTargett
105+
## cornerExternalLinkTarget
106106

107107
- Type: `String`
108108
- Default: `'_blank'`
@@ -111,7 +111,7 @@ Target to open external link at the top right corner. Default `'_blank'` (new wi
111111

112112
```js
113113
window.$docsify = {
114-
cornerExternalLinkTargett: '_self', // default: '_blank'
114+
cornerExternalLinkTarget: '_self', // default: '_blank'
115115
};
116116
```
117117

Diff for: src/core/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function (vm) {
1010
autoHeader: false,
1111
basePath: '',
1212
catchPluginErrors: true,
13-
cornerExternalLinkTargett: '_blank',
13+
cornerExternalLinkTarget: '_blank',
1414
coverpage: '',
1515
crossOriginLinks: [],
1616
el: '#app',

0 commit comments

Comments
 (0)