Skip to content

Language update for first, last, slice - #127 #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 16, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion entries/first.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<added>1.4</added>
</signature>
<desc>Reduce the set of matched elements to the first in the set.</desc>
<longdesc><p>Given a jQuery object that represents a set of DOM elements, the <code>.first()</code> method constructs a new jQuery object from the first matching element.</p>
<longdesc><p>Given a jQuery object that represents a set of DOM elements, the <code>.first()</code> method constructs a new jQuery object from the first element in that set.</p>
<p>Consider a page with a simple list on it:</p>
<pre><code>
&lt;ul&gt;
Expand Down
2 changes: 1 addition & 1 deletion entries/last.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</signature>
<desc>Reduce the set of matched elements to the final one in the set.</desc>
<longdesc>
<p>Given a jQuery object that represents a set of DOM elements, the <code>.last()</code> method constructs a new jQuery object from the last matching element.</p>
<p>Given a jQuery object that represents a set of DOM elements, the <code>.last()</code> method constructs a new jQuery object from the last element in that set.</p>
<p>Consider a page with a simple list on it:</p>
<pre><code>
&lt;ul&gt;
Expand Down
2 changes: 1 addition & 1 deletion entries/slice.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</signature>
<desc>Reduce the set of matched elements to a subset specified by a range of indices.</desc>
<longdesc>
<p>Given a jQuery object that represents a set of DOM elements, the <code>.slice()</code> method constructs a new jQuery object from a subset of the matching elements. 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>
<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>
<p>Consider a page with a simple list on it:</p>
<pre><code>
&lt;ul&gt;
Expand Down