0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

add missing paren

This commit is contained in:
Jacob Thornton 2012-01-27 14:44:05 -08:00
parent 8a2124faff
commit 748696a553
2 changed files with 2 additions and 2 deletions

View 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,

2
docs/build/index.js vendored
View 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 = {}