remove spurious newline

This commit is contained in:
gorhill 2015-05-16 16:15:30 -04:00
parent f3613ff462
commit 11f349f54a
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ var rulesFromHTML = function(selector) {
rules.push(li.text());
}
}
return rules.join('\n');
return rules.join('\n').trim();
};
/******************************************************************************/