Skip to content

Commit

Permalink
[e] (0) typo
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=13772

git-svn-id: http://svn.whatwg.org/webapps@6637 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 5, 2011
1 parent 3a3157f commit 3fec547
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion complete.html
Expand Up @@ -78246,7 +78246,7 @@ <h5 id=shared-workers><span class=secno>10.1.3.3 </span>Shared workers</h5>

<pre>worker.port.onmessage = function (event) { ... };
worker.port.postMessage('some message');
worker.port.postMessage({ foo: 'structured'; bar: ['data', 'also', 'possible']});</pre>
worker.port.postMessage({ foo: 'structured', bar: ['data', 'also', 'possible']});</pre>

<p>Inside the shared worker, new clients of the worker are announced
using the <code title=event-connect>connect</code> event. The port
Expand Down
2 changes: 1 addition & 1 deletion index
Expand Up @@ -78246,7 +78246,7 @@ function _decrypt(k, s) {

<pre>worker.port.onmessage = function (event) { ... };
worker.port.postMessage('some message');
worker.port.postMessage({ foo: 'structured'; bar: ['data', 'also', 'possible']});</pre>
worker.port.postMessage({ foo: 'structured', bar: ['data', 'also', 'possible']});</pre>

<p>Inside the shared worker, new clients of the worker are announced
using the <code title=event-connect>connect</code> event. The port
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -88502,7 +88502,7 @@ dictionary <dfn>MediaStreamEventInit</dfn> : <span>EventInit</span> {

<pre>worker.port.onmessage = function (event) { ... };
worker.port.postMessage('some message');
worker.port.postMessage({ foo: 'structured'; bar: ['data', 'also', 'possible']});</pre>
worker.port.postMessage({ foo: 'structured', bar: ['data', 'also', 'possible']});</pre>

<p>Inside the shared worker, new clients of the worker are announced
using the <code title="event-connect">connect</code> event. The port
Expand Down

0 comments on commit 3fec547

Please sign in to comment.