Fix minor typos.
authorGary Kacmarcik <garykac@google.com>
Tue, 13 Aug 2013 13:33:24 -0700
changeset 441 d0dcec6e74c8
parent 440 af6e4a25da6f
child 442 377abd6362f4
Fix minor typos.
html/DOM3-Events.html
--- a/html/DOM3-Events.html	Wed Jul 31 06:53:46 2013 -0700
+++ b/html/DOM3-Events.html	Tue Aug 13 13:33:24 2013 -0700
@@ -596,7 +596,7 @@
 
 			<div class="figure" style="text-align: center">
 				<object type="image/svg+xml" data="images/eventflow.svg" width="520" height="560">
-					<img src="images/eventflow.png" alt="Graphical representation of an event dispatched in a DOM tree using the DOM event flow" title="graphical representation of an event dispatched in a DOM tree using the DOM event flow" />
+					<img src="images/eventflow.png" alt="Graphical representation of an event dispatched in a DOM tree using the DOM event flow" title="Graphical representation of an event dispatched in a DOM tree using the DOM event flow" />
 				</object>
 			</div>
 
@@ -608,7 +608,7 @@
 				structure of the document. The last item in the list MUST be the <a class="def" href="#glossary-event-target">event target</a>; the
 				preceding items in the list are referred to as the <em>target's ancestors</em>, and the immediately preceding item as the <em>target's parent</em>. Once determined, the
 				propagation path MUST NOT be changed; for DOM implementations, this applies even if an element in the propagation path is moved within the
-				DOM.  or removed from the DOM.</p>
+				DOM or removed from the DOM.</p>
 
 			<div class="example">
 				<div class="example-title">Example</div>
@@ -1106,8 +1106,8 @@
 
 				<dt>void stopPropagation()</dt>
 				<dd>
-					<p>Prevents all other <a class="def" href="#glossary-event-handler">event listeners</a> from being triggered, excluding any remaining <a class="def"
-						href="#glossary-candidate-event-handlers">candiate event listeners</a>. Once it has been called, further calls to this method have no additional effect.</p>
+					<p>Prevents all other <a class="def" href="#glossary-event-handler">event listeners</a> from being triggered for this event dispatch, <strong>excluding</strong> any remaining <a class="def"
+						href="#glossary-candidate-event-handlers">candidate event listeners</a>. Once it has been called, further calls to this method have no additional effect.</p>
 
 					<p class="note" id="note-stopPropagation-default"><strong>Note:</strong> This method does not prevent the <a class="def" href="#glossary-default-action">default action</a>
 						from being invoked; use <a href="#events-event-type-preventDefault"><code>Event.preventDefault()</code></a> for that effect.</p>
@@ -1184,8 +1184,8 @@
 				<dd>
 					<p class="intro-dom">Introduced in DOM Level 3</p>
 
-					<p>Prevents all other <a class="def" href="#glossary-event-handler">event listeners</a> from being triggered for this event dispatch, including any remaining
-						<a class="def" href="#glossary-candidate-event-handlers">candiate event listeners</a>. Once it has been called, further calls to this method have no additional
+					<p>Prevents all other <a class="def" href="#glossary-event-handler">event listeners</a> from being triggered for this event dispatch, <strong>including</strong> any remaining
+						<a class="def" href="#glossary-candidate-event-handlers">candidate event listeners</a>. Once it has been called, further calls to this method have no additional
 						effect.</p>
 
 					<p class="note"><strong>Note:</strong> This method does not prevent the <a class="def" href="#glossary-default-action">default action</a> from being invoked;