Skip to content

Commit

Permalink
[e] (0) Fix some typos or copypasta.
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=20826
Affected topics: Canvas, Workers

git-svn-id: http://svn.whatwg.org/webapps@7766 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 22, 2013
1 parent 6fa7e7b commit 7c745b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -248,7 +248,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 21 March 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 22 March 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -32867,7 +32867,7 @@ <h5 id=proxying-canvases-to-workers><span class=secno>4.8.11.1 </span>Proxying c
<p>Second, the worker:</p>

<pre>onmessage = function (event) {
var context = new CanvasRenderingContext2d();
var context = new CanvasRenderingContext2D();
event.data.setContext(context); // event.data is the CanvasProxy object
setInterval(function () {
context.clearRect(0, 0, context.width, context.height);
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -248,7 +248,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 21 March 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 22 March 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -32867,7 +32867,7 @@ interface <dfn id=htmlcanvaselement>HTMLCanvasElement</dfn> : <a href=#htmleleme
<p>Second, the worker:</p>

<pre>onmessage = function (event) {
var context = new CanvasRenderingContext2d();
var context = new CanvasRenderingContext2D();
event.data.setContext(context); // event.data is the CanvasProxy object
setInterval(function () {
context.clearRect(0, 0, context.width, context.height);
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -40019,7 +40019,7 @@ interface <dfn>HTMLCanvasElement</dfn> : <span>HTMLElement</span> {
<p>Second, the worker:</p>

<pre>onmessage = function (event) {
var context = new CanvasRenderingContext2d();
var context = new CanvasRenderingContext2D();
event.data.setContext(context); // event.data is the CanvasProxy object
setInterval(function () {
context.clearRect(0, 0, context.width, context.height);
Expand Down

0 comments on commit 7c745b9

Please sign in to comment.