Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit 5420ad1

Browse files
committed
comment fixups
1 parent 30f8000 commit 5420ad1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

builder/pattern_engines/engine_mustache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* mustache pattern engine for patternlab-node - v0.10.1 - 2015
33
*
4-
* Brian Muenzenmeyer, and the web community.
4+
* Geoffrey Pursell, Brian Muenzenmeyer, and the web community.
55
* Licensed under the MIT license.
66
*
77
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.

builder/pattern_engines/pattern_engines.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* patternlab-node - v0.10.1 - 2015
33
*
4-
* Brian Muenzenmeyer, and the web community.
4+
* Geoffrey Pursell, Brian Muenzenmeyer, and the web community.
55
* Licensed under the MIT license.
66
*
77
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
@@ -17,7 +17,13 @@
1717
'handlebars'
1818
];
1919

20-
// object/hash of all loaded pattern engines, empty at first
20+
// Object/hash of all loaded pattern engines, empty at first.
21+
// My intention here is to make this return an object that can be used to
22+
// obtain any loaded PatternEngine by addressing them like this:
23+
//
24+
// var PatternEngines = require('pattern_engines/pattern_engines');
25+
// var Mustache = PatternEngines('mustache');
26+
//
2127
function PatternEngines () {
2228
// do nothing
2329
}

0 commit comments

Comments
 (0)