Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2012-01-28 02:44:05 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-01-28 02:44:05 +0400
commit748696a5532100f7a45cbb0d6a138fae6afac5cb (patch)
tree7fe3d53bb7d4f828d63a5177c552748b95543243 /docs/build
parent8a2124faff2cad26498203c047c5dc9a2b6d0e73 (diff)
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 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 = {}