From 5286c482207a256ba199b20b4e6527262c7e2ccf Mon Sep 17 00:00:00 2001 From: cloudhead Date: Mon, 17 May 2010 23:28:23 -0400 Subject: [PATCH] removed trailing comma, which breaks minification --- lib/less/tree/comment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/less/tree/comment.js b/lib/less/tree/comment.js index 08e9b3fa..5e8744dd 100644 --- a/lib/less/tree/comment.js +++ b/lib/less/tree/comment.js @@ -6,5 +6,5 @@ tree.Comment = function Comment(value) { tree.Comment.prototype = { toCSS: function () { return this.value; - }, + } };