summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/template.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/template.js')
-rw-r--r--tools/eslint/node_modules/lodash/template.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/eslint/node_modules/lodash/template.js b/tools/eslint/node_modules/lodash/template.js
index c1a523c575..2df417fa71 100644
--- a/tools/eslint/node_modules/lodash/template.js
+++ b/tools/eslint/node_modules/lodash/template.js
@@ -86,7 +86,8 @@ var reUnescapedString = /['\n\r\u2028\u2029\\]/g;
* compiled({ 'user': 'barney' });
* // => 'hello barney!'
*
- * // Use the ES delimiter as an alternative to the default "interpolate" delimiter.
+ * // Use the ES template literal delimiter as an "interpolate" delimiter.
+ * // Disable support by replacing the "interpolate" delimiter.
* var compiled = _.template('hello ${ user }!');
* compiled({ 'user': 'pebbles' });
* // => 'hello pebbles!'