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 35bc9ac commit 418805cCopy full SHA for 418805c
lib/utils.js
@@ -219,17 +219,17 @@ module.exports.parseData = function (data, file) {
219
220
if (method.tags.param) {
221
222
- method.tags.param.forEach(function (tag) {
+ method.tags.param.forEach(function (param) {
223
224
- if (!tag.name.match(/\./)) {
+ if (!param.name.match(/\./)) {
225
226
- if (tag.isOptional) {
+ if (param.isOptional) {
227
228
- params.optional.push(tag.name);
+ params.optional.push(param.name);
229
230
} else {
231
232
- params.required.push(tag.name);
+ params.required.push(param.name);
233
234
}
235
0 commit comments