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

Commit 803d541

Browse files
committed
fix handlebars engine's findPartialKey method signature to match new
convention -- this method only needs a string
1 parent e62a8ed commit 803d541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/pattern_engines/engine_handlebars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
},
6565
// given a pattern, and a partial string, tease out the "pattern key" and
6666
// return it.
67-
findPartialKey: function(pattern, partialString) {
67+
findPartialKey: function(partialString) {
6868
var partialKey = partialString.replace(this.findPartialsRE, '$1');
6969
return partialKey;
7070
}

0 commit comments

Comments
 (0)