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=8428

git-svn-id: http://svn.whatwg.org/webapps@4499 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jan 6, 2010
1 parent ff48ff6 commit 669c834
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 @@ -44732,7 +44732,7 @@ <h4 id=using-the-microdata-dom-api><span class=secno>5.1.6 </span>Using the micr
"http://example.com/color" values. This script looks up the first such
item and then lists all its values.</p>

<pre>var cat = document.getItems('http://example.com/animals#cat')[0];
<pre>var cat = document.getItems('http://example.org/animals#cat')[0];
var colors = cat.properties['http://example.com/color'].values;
var result;
if (colors.length == 0) {
Expand Down
2 changes: 1 addition & 1 deletion index
Expand Up @@ -44567,7 +44567,7 @@ alert('Hello ' + user.properties['name'][0].content + '!');</pre>
"http://example.com/color" values. This script looks up the first such
item and then lists all its values.</p>

<pre>var cat = document.getItems('http://example.com/animals#cat')[0];
<pre>var cat = document.getItems('http://example.org/animals#cat')[0];
var colors = cat.properties['http://example.com/color'].values;
var result;
if (colors.length == 0) {
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -49746,7 +49746,7 @@ alert('Hello ' + user.properties['name'][0].content + '!');</pre>
"http://example.com/color" values. This script looks up the first such
item and then lists all its values.</p>

<pre>var cat = document.getItems('http://example.com/animals#cat')[0];
<pre>var cat = document.getItems('http://example.org/animals#cat')[0];
var colors = cat.properties['http://example.com/color'].values;
var result;
if (colors.length == 0) {
Expand Down

0 comments on commit 669c834

Please sign in to comment.