We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e8a57 commit 439fd99Copy full SHA for 439fd99
src/jsdocUtils.js
@@ -195,7 +195,7 @@ const tagsWithMandatoryNamepath = [
195
'typedef',
196
];
197
198
-const tagsWithMandatoryEitherTypeOrNamepath = [
+const tagsWithMandatoryTypeOrNamepath = [
199
'alias',
200
'augments', 'extends',
201
'borrows',
@@ -233,7 +233,7 @@ const tagMightHaveEitherTypeOrNamepath = (tag) => {
233
};
234
235
const tagMustHaveEitherTypeOrNamepath = (tag) => {
236
- return tagsWithMandatoryEitherTypeOrNamepath.includes(tag);
+ return tagsWithMandatoryTypeOrNamepath.includes(tag);
237
238
239
/**
0 commit comments