Skip to content

Commit b9cd6ba

Browse files
committed
api docs: code indentation and formatting - second attempt at filter entry)
1 parent dd59c0f commit b9cd6ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/filter.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ $( "li" )
7171
.filter(function( index ) {
7272
return index % 3 == 2;
7373
})
74-
.css( "background-color", "red");
74+
.css( "background-color", "red" );
7575
</code></pre>
7676
<p>This alteration to the code will cause the third and sixth list items to be highlighted, as it uses the modulus operator (<code>%</code>) to select every item with an <code>index</code> value that, when divided by 3, has a remainder of <code>2</code>.</p>
7777
</longdesc>

0 commit comments

Comments
 (0)