Skip to content

Commit 40f6529

Browse files
committed
docs: update jsdoc website
1 parent ca2c4fe commit 40f6529

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.README/rules/check-tag-names.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Reports invalid block tag names.
44

5-
Valid [JSDoc 3 Block Tags](http://usejsdoc.org/#block-tags) are:
5+
Valid [JSDoc 3 Block Tags](https://jsdoc.app/#block-tags) are:
66

77
```
88
abstract

.README/rules/require-param-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Requires that all function parameters have name.
44

55
> The `@param` tag requires you to specify the name of the parameter you are documenting. You can also include the parameter's type, enclosed in curly brackets, and a description of the parameter.
66
>
7-
> [JSDoc](http://usejsdoc.org/tags-param.html#overview)
7+
> [JSDoc](https://jsdoc.app/tags-param.html#overview)
88
99
|||
1010
|---|---|

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ function quux (foo) {
10301030

10311031
Reports invalid block tag names.
10321032

1033-
Valid [JSDoc 3 Block Tags](http://usejsdoc.org/#block-tags) are:
1033+
Valid [JSDoc 3 Block Tags](https://jsdoc.app/#block-tags) are:
10341034

10351035
```
10361036
abstract
@@ -3787,7 +3787,7 @@ Requires that all function parameters have name.
37873787

37883788
> The `@param` tag requires you to specify the name of the parameter you are documenting. You can also include the parameter's type, enclosed in curly brackets, and a description of the parameter.
37893789
>
3790-
> [JSDoc](http://usejsdoc.org/tags-param.html#overview)
3790+
> [JSDoc](https://jsdoc.app/tags-param.html#overview)
37913791
37923792
|||
37933793
|---|---|

src/iterateJsdoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const curryUtils = (
160160
utils.avoidDocs = (param) => {
161161
return param && utils.avoidDocsParamOnly() ||
162162

163-
// inheritdoc implies that all documentation is inherited; see http://usejsdoc.org/tags-inheritdoc.html
163+
// inheritdoc implies that all documentation is inherited; see https://jsdoc.app/tags-inheritdoc.html
164164
utils.hasTag('inheritdoc') ||
165165

166166
// After deprecation, the `param` parameter can be removed, but for now,

src/rules/requireReturns.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ import iterateJsdoc from '../iterateJsdoc';
1414
const canSkip = (utils) => {
1515
return utils.hasATag([
1616
// inheritdoc implies that all documentation is inherited
17-
// see http://usejsdoc.org/tags-inheritdoc.html
17+
// see https://jsdoc.app/tags-inheritdoc.html
1818
//
1919
// Abstract methods are by definition incomplete,
2020
// so it is not an error if it declares a return value but does not implement it.
2121
'abstract',
2222
'virtual',
2323

24-
// Constructors do not have a return value by definition (http://usejsdoc.org/tags-class.html)
24+
// Constructors do not have a return value by definition (https://jsdoc.app/tags-class.html)
2525
// So we can bail out here, too.
2626
'class',
2727
'constructor',

0 commit comments

Comments
 (0)