Skip to content

Commit 5138333

Browse files
committed
Dblclick: Minor improvements to wording
Closes gh-808
1 parent fe4d6f5 commit 5138333

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entries/dblclick.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $( "#target" ).dblclick(function() {
4747
<p>
4848
<samp>Handler for .dblclick() called.</samp>
4949
</p>
50-
<p>To trigger the event manually, apply <code>.dblclick()</code> without an argument:</p>
50+
<p>To trigger the event manually, call <code>.dblclick()</code> without an argument:</p>
5151
<pre><code>
5252
$( "#other" ).click(function() {
5353
$( "#target" ).dblclick();
@@ -66,7 +66,7 @@ $( "#other" ).click(function() {
6666
</longdesc>
6767
<note id="detach-shorthand" type="additional" data-event="dblclick"/>
6868
<example>
69-
<desc>To bind a "Hello World!" alert box the dblclick event on every paragraph on the page:</desc>
69+
<desc>To bind a "Hello World!" alert box to the dblclick event on every paragraph on the page:</desc>
7070
<code><![CDATA[
7171
$( "p" ).dblclick(function() {
7272
alert( "Hello World!" );

0 commit comments

Comments
 (0)