diff --git a/lodash.js b/lodash.js index 262bd9a05..06e15b11a 100644 --- a/lodash.js +++ b/lodash.js @@ -6825,10 +6825,7 @@ * // => 'hello barney!' * * // using a custom template delimiters - * _.templateSettings = { - * 'interpolate': /{{([\s\S]+?)}}/g - * }; - * + * _.templateSettings.interpolate = /{{([\s\S]+?)}}/g; * _.template('hello {{ name }}!', { 'name': 'mustache' }); * // => 'hello mustache!' *