diff --git a/lodash.js b/lodash.js
index 471127fbc..ff2f7169f 100644
--- a/lodash.js
+++ b/lodash.js
@@ -6076,8 +6076,8 @@
* // => 'hello mustache!'
*
* // using the `imports` option to import jQuery
- * var list = '<% $.each(people, function(name) { %>
<%= name %><% }); %>';
- * _.template(list, { 'people': ['moe', 'larry'] }, { 'imports': { '$': jQuery });
+ * var list = '<% $.each(people, function(name) { %><%- name %><% }); %>';
+ * _.template(list, { 'people': ['moe', 'larry'] }, { 'imports': { '$': jQuery } });
* // => 'moelarry'
*
* // using the `sourceURL` option to specify a custom sourceURL for the template