fix typo in emailer

This commit is contained in:
barisusakli
2015-09-14 21:01:13 -04:00
parent 22d6ceab59
commit b099aaf61f

View File

@@ -46,7 +46,7 @@ var fs = require('fs'),
Emailer.sendToEmail = function(template, email, language, params, callback) {
function renderAndTranslate(tpl, params, callback) {
async.waterfal([
async.waterfall([
function (next) {
app.render(template, params, next);
},