Add missing jsdoc comment

This commit is contained in:
Titus Wormer 2015-06-19 18:34:34 +02:00
parent a3b082949d
commit 63b83b994f
2 changed files with 10 additions and 2 deletions

View File

@ -107,11 +107,15 @@ function maximumLineLength(ast, file, preferred, done) {
whitelist(initial - 1, final);
});
/*
/**
* Finally, whitelist URLs, but only if they occur at
* or after the wrap. However, when they do, and
* theres white-space after it, they are not
* whitelisted.
*
* @param {Node} node
* @param {number} pos
* @param {Node} parent
*/
function validateLink(node, pos, parent) {
var next = parent.children[pos + 1];

View File

@ -2401,11 +2401,15 @@ function maximumLineLength(ast, file, preferred, done) {
whitelist(initial - 1, final);
});
/*
/**
* Finally, whitelist URLs, but only if they occur at
* or after the wrap. However, when they do, and
* theres white-space after it, they are not
* whitelisted.
*
* @param {Node} node
* @param {number} pos
* @param {Node} parent
*/
function validateLink(node, pos, parent) {
var next = parent.children[pos + 1];