Skip to content

Commit

Permalink
Close #409, proper custom helper documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
larzconwell committed Jul 12, 2013
1 parent f104484 commit ba5daf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reference/helpers.md
Expand Up @@ -7,7 +7,7 @@ The exported helpers, are available in your views and throughout your applicatio

For example, we have this script in a file in our `app/helpers` directory:
```
module.exports = function upperCase(str) {
exports.upperCase = function upperCase(str) {
return str.toUpperCase();
};
```
Expand Down

0 comments on commit ba5daf5

Please sign in to comment.