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 297da18 commit 764c741Copy full SHA for 764c741
lib/utils.js
@@ -130,17 +130,17 @@ module.exports.formatStringForUID = function (content) {
130
131
module.exports.parseData = function (data, file) {
132
133
- data.forEach(function (methods) {
+ data.forEach(function (method) {
134
135
- if (methods.ctx) {
+ if (method.ctx) {
136
137
- methods.ctx.uid = file + '-' + module.exports.formatStringForUID(methods.ctx.string);
+ method.ctx.uid = file + '-' + module.exports.formatStringForUID(method.ctx.string);
138
139
}
140
141
- if (methods.tags) {
+ if (method.tags) {
142
143
- methods.tags.forEach(function (tag) {
+ method.tags.forEach(function (tag) {
144
145
if (tag.name && tag.optional) {
146
0 commit comments