Make processName example clearer

The description for processName says the function is passed the filepath but the example uses an argument named `filename`. This change makes it clearer that the filepath is being passed to the function
This commit is contained in:
Jayraj Jog 2014-01-24 12:16:10 -08:00
parent a5c76f56e4
commit ba4ba32360

View File

@ -20,8 +20,8 @@ This option accepts a function which takes one argument (the template filepath)
```js
options: {
processName: function(filename) {
return filename.toUpperCase();
processName: function(filepath) {
return filepath.toUpperCase();
}
}
```