]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
add missing paren
authorJacob Thornton <jacobthornton@gmail.com>
Fri, 27 Jan 2012 22:44:05 +0000 (14:44 -0800)
committerJacob Thornton <jacobthornton@gmail.com>
Fri, 27 Jan 2012 22:44:05 +0000 (14:44 -0800)
docs/assets/css/bootstrap.css
docs/build/index.js

index db6df3a19888765613fb9859bfdb01d1826396fc..176238fc66bc1f587d160d275c2d5c151e9aadb9 100644 (file)
@@ -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,
index 3dfc3a7c7fb287d9d2648e5b7538de975c218831..4c759c6e0b459e4ff00d975a46025a9848aad5f7 100644 (file)
@@ -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 = {}