Skip to content

Commit f81c0a4

Browse files
committed
slice(): Trivial text tweak
1 parent b71e5fb commit f81c0a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entries/slice.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</signature>
1313
<desc>Reduce the set of matched elements to a subset specified by a range of indices.</desc>
1414
<longdesc>
15-
<p>Given a jQuery object that represents a set of DOM elements, the <code>.slice()</code> method constructs a new jQuery object containing a subset of the elements specified by the <code>start</code> and optional <code>end</code> arguments. The supplied <code>start</code> index identifies the position of one of the elements in the set; if <code>end</code> is omitted, all elements after this one will be included in the result.</p>
15+
<p>Given a jQuery object that represents a set of DOM elements, the <code>.slice()</code> method constructs a new jQuery object containing a subset of the elements specified by the <code>start</code> and, optionally, <code>end</code> argument. The supplied <code>start</code> index identifies the position of one of the elements in the set; if <code>end</code> is omitted, all elements after this one will be included in the result.</p>
1616
<p>Consider a page with a simple list on it:</p>
1717
<pre><code>
1818
&lt;ul&gt;
@@ -101,4 +101,4 @@ $("button").click(colorEm);
101101
</example>
102102
<category slug="traversing/filtering"/>
103103
<category slug="version/1.1.4"/>
104-
</entry>
104+
</entry>

0 commit comments

Comments
 (0)