Skip to content

Commit 056d18c

Browse files
committed
yuidoc-to-jsdoc - jshint fix
1 parent 12b2d44 commit 056d18c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tasks/yuidoc-to-jsdoc/converter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ function fixup_jsobject_like (rawType) {
177177

178178
if (r.match(/^{([\w$.]+:\s*[\w$.]+,?\s*)+}$/)) {
179179
r = r.replace(/([\w$.]+):\s*([\w$.]+)(,?\s*)/g, function (m, a, b, c) {
180-
if (c) { c = ", " };
180+
if (c) { c = ", "; }
181181
return as_valid_identifier(a) + ": " + as_valid_identifier(b) + c;
182182
});
183183
return r;

0 commit comments

Comments
 (0)