From e69001d7cff0c4212ce3fbd80454c8ca7110779d Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Sun, 12 Oct 2014 13:44:12 -0700 Subject: [PATCH] correct a comment --- lib/jsdoc/src/parser.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/jsdoc/src/parser.js b/lib/jsdoc/src/parser.js index cf39bde4..c19c4ec1 100644 --- a/lib/jsdoc/src/parser.js +++ b/lib/jsdoc/src/parser.js @@ -384,8 +384,7 @@ Parser.prototype.resolveThis = function(node) { var result; // In general, if there's an enclosing scope, we use the enclosing scope to resolve `this`. - // For object properties, we use the node's parent (the object) instead. This is a consequence - // of the source-rewriting hackery that we use to support the `@lends` tag. + // For object properties, we use the node's parent (the object) instead. if (node.type !== Syntax.Property && node.enclosingScope) { doclet = this._getDoclet(node.enclosingScope.nodeId);