aboutsummaryrefslogtreecommitdiff
path: root/docs/build
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2012-01-27 14:44:05 -0800
committerJacob Thornton <[email protected]>2012-01-27 14:44:05 -0800
commit748696a5532100f7a45cbb0d6a138fae6afac5cb (patch)
tree7fe3d53bb7d4f828d63a5177c552748b95543243 /docs/build
parent8a2124faff2cad26498203c047c5dc9a2b6d0e73 (diff)
downloadbootstrap-748696a5532100f7a45cbb0d6a138fae6afac5cb.tar.xz
bootstrap-748696a5532100f7a45cbb0d6a138fae6afac5cb.zip
add missing paren
Diffstat (limited to 'docs/build')
-rw-r--r--docs/build/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/build/index.js b/docs/build/index.js
index 3dfc3a7c7..4c759c6e0 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 = {}