Skip to content

Commit cf9521b

Browse files
committed
docs: generate docs
1 parent ce6a87d commit cf9521b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ function quux (foo) {
12271227
}
12281228
// Settings: {"jsdoc":{"additionalTagNames":{"customTags":["baz","bar"]}}}
12291229

1230-
/**
1230+
/**
12311231
* @abstract
12321232
* @access
12331233
* @alias
@@ -4635,14 +4635,15 @@ const quux = async function () {}
46354635
/**
46364636
*
46374637
*/
4638-
const quux = async () => {}
4638+
async function quux () {
4639+
}
46394640
// Settings: {"jsdoc":{"forceRequireReturn":true}}
46404641
// Message: Missing JSDoc @returns declaration.
46414642

46424643
/**
46434644
*
46444645
*/
4645-
async function quux () {
4646+
function quux () {
46464647
}
46474648
// Settings: {"jsdoc":{"forceReturnsWithAsync":true}}
46484649
// Message: Missing JSDoc @returns declaration.
@@ -5024,7 +5025,7 @@ function quux() {
50245025

50255026
}
50265027
// Settings: {"jsdoc":{"allowEmptyNamepaths":false}}
5027-
// Message: Syntax error in type:
5028+
// Message: Syntax error in type:
50285029
````
50295030

50305031
The following patterns are not considered problems:

0 commit comments

Comments
 (0)