Skip to content

Commit

Permalink
Fix a typo in I18n#t.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kit Goncharov committed Apr 27, 2011
1 parent f838599 commit 1050b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/i18n.js
Expand Up @@ -46,7 +46,7 @@ I18n.prototype.t = function t(item, context) {
return "');" + code.replace(/\\'/g, "'").replace(/[\r\n\t]/g, ' ') + "__p.push('";
}).replace(/\r/g, '\\r').replace(/\n/g, '\\n').replace(/\t/g, '\\t') +
"');}return __p.join('');"
)(result, context);
)(context);
}
return result;
};

0 comments on commit 1050b8f

Please sign in to comment.