From 8fb75ee9e78ecb0954e1634ab85e91d533d0ab42 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 14 Jan 2014 14:25:25 -0800 Subject: [PATCH] add missing semicolon --- docs/grunt/bs-lessdoc-parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/grunt/bs-lessdoc-parser.js b/docs/grunt/bs-lessdoc-parser.js index 2463048193..50c6ebbd31 100644 --- a/docs/grunt/bs-lessdoc-parser.js +++ b/docs/grunt/bs-lessdoc-parser.js @@ -41,7 +41,7 @@ function Section(heading, customizable) { Section.prototype.addSubSection = function (subsection) { this.subsections.push(subsection); -} +}; function SubSection(heading) { this.heading = heading.trim();