Fix _.template doc typo. [closes #484] [ci skip]

This commit is contained in:
John-David Dalton
2014-02-21 08:32:15 -08:00
parent 008cbc8972
commit 40e32daabe

View File

@@ -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!'
*