diff --git a/lodash.src.js b/lodash.src.js index b91e1237a..64acee3c9 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -10312,10 +10312,10 @@ * var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' }); * compiled.source; * // => function(data) { - * var __t, __p = ''; - * __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!'; - * return __p; - * } + * // var __t, __p = ''; + * // __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!'; + * // return __p; + * // } * * // using the `source` property to inline compiled templates for meaningful * // line numbers in error messages and a stack trace