From: Chris Rebert Date: Tue, 14 Jan 2014 22:25:25 +0000 (-0800) Subject: add missing semicolon X-Git-Tag: v3.1.0~104^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fb75ee9e78ecb0954e1634ab85e91d533d0ab42;p=thirdparty%2Fbootstrap.git add missing semicolon --- 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();