Skip to content

Commit b1da4b4

Browse files
committed
Remove extra double quote. Closes jquery#226
1 parent cec60cb commit b1da4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/each.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</code></pre>
1919
<p>You can select the list items and iterate across them:</p>
2020
<pre><code>$( "li" ).each(function( index ) {
21-
console.log( index + ": "" + $(this).text() );
21+
console.log( index + ": " + $(this).text() );
2222
});
2323
</code></pre>
2424
<p>A message is thus logged for each item in the list:</p>

0 commit comments

Comments
 (0)