From d6336c430276ac10612eaab87c60a44d989fdd9b Mon Sep 17 00:00:00 2001 From: jdalton Date: Sun, 22 Feb 2015 17:40:29 -0800 Subject: [PATCH] Fix code styling in `_.template` doc example. [ci skip] --- lodash.src.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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