From: Jacob Thornton Date: Fri, 27 Jan 2012 22:44:05 +0000 (-0800) Subject: add missing paren X-Git-Tag: v2.0.0~6^2~114^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=748696a5532100f7a45cbb0d6a138fae6afac5cb;p=thirdparty%2Fbootstrap.git add missing paren --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index db6df3a198..176238fc66 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Fri Jan 27 13:37:10 PST 2012 + * Date: Fri Jan 27 14:44:00 PST 2012 */ article, aside, diff --git a/docs/build/index.js b/docs/build/index.js index 3dfc3a7c7f..4c759c6e0b 100644 --- a/docs/build/index.js +++ b/docs/build/index.js @@ -14,7 +14,7 @@ pages = fs.readdirSync(__dirname + '/../templates/pages') // iterate over pages pages.forEach(function (name) { - if (!name.match(/\.mustache$/) return + if (!name.match(/\.mustache$/)) return var page = fs.readFileSync(__dirname + '/../templates/pages/' + name, 'utf-8') , context = {}