From 366c33ffe6e40c6cf23561e24aef1824d2785e68 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Tue, 3 Jul 2012 18:53:38 -0700 Subject: [PATCH] fix comment that totally freaked out JSHint this fixes a JSHint error that cannot be suppressed. --- rhino_modules/jsdoc/src/parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rhino_modules/jsdoc/src/parser.js b/rhino_modules/jsdoc/src/parser.js index ae90eab6..2d8e61e6 100644 --- a/rhino_modules/jsdoc/src/parser.js +++ b/rhino_modules/jsdoc/src/parser.js @@ -234,7 +234,7 @@ exports.Parser.prototype.resolveThis = function(node) { } else { if (node.enclosingFunction){ - return this.resolveThis(node.enclosingFunction/*memberof.doclet.meta.code.val*/); + return this.resolveThis(node.enclosingFunction/* memberof.doclet.meta.code.val */); } else return ''; // TODO handle global this? }