File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ function findEnginesInConfig(config) {
83
83
// any loaded PatternEngine by addressing them like this:
84
84
//
85
85
// var PatternEngines = require('./pattern_engines/pattern_engines');
86
- // var Mustache = PatternEngines['mustache '];
86
+ // var Handlebars = PatternEngines['handlebars '];
87
87
//
88
88
// Object.create lets us create an object with a specified prototype. We want
89
89
// this here because we would like the object's "own properties" to include
@@ -239,9 +239,9 @@ const PatternEngines = Object.create({
239
239
}
240
240
}
241
241
242
- // otherwise, assume it's a plain mustache template string and act
242
+ // otherwise, assume it's a plain handlebars template string and act
243
243
// accordingly
244
- return 'mustache ' ;
244
+ return 'handlebars ' ;
245
245
} ,
246
246
247
247
/**
You can’t perform that action at this time.
0 commit comments