Skip to content

Commit 3084d85

Browse files
committed
Fix typo in pseudo code.
1 parent 96201a2 commit 3084d85

1 file changed

Lines changed: 14 additions & 13 deletions

File tree

css3-transforms/Overview.html

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
88
<title>CSS Transforms</title>
99

10-
<link href="http://purl.org/dc/terms/" rel=schema.DC>
11-
<meta content="CSS Transforms" name=DC.title>
12-
<meta content=text name=DC.type>
13-
<meta content=2012-09-11 name=DC.issued>
14-
<meta content="http://dev.w3.org/csswg/css3-transforms/" name=DC.creator>
15-
<meta content=W3C name=DC.publisher>
16-
<meta content="http://www.w3.org/TR/2012/ED-css3-transforms-20120911/"
17-
name=DC.identifier>
10+
<link href="http://purl.org/dc/terms/" rel=schema.dcterms>
1811
<link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
19-
rel=DC.rights>
12+
rel=dcterms.rights>
13+
<meta content="CSS Transforms" name=dcterms.title>
14+
<meta content=text name=dcterms.type>
15+
<meta content=2012-10-18 name=dcterms.issued>
16+
<meta content="http://dev.w3.org/csswg/css3-transforms/"
17+
name=dcterms.creator>
18+
<meta content=W3C name=dcterms.publisher>
19+
<meta content="http://www.w3.org/TR/2012/ED-css3-transforms-20121018/"
20+
name=dcterms.identifier>
2021
<link href="../default.css" rel=stylesheet type="text/css">
2122
<script defer=defer
2223
src="http://test.csswg.org/harness/annotate.js#CSS3-TRANSFORMS_DEV"
@@ -49,15 +50,15 @@
4950

5051
<h1>CSS Transforms</h1>
5152

52-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 11 September
53+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 18 October
5354
2012</h2>
5455

5556
<dl>
5657
<dt>This version:
5758

5859
<dd> <a
59-
href="http://www.w3.org/TR/2012/ED-css3-transforms-20120911/">http://dev.w3.org/csswg/css3-transforms/</a>
60-
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20120911/-->
60+
href="http://www.w3.org/TR/2012/ED-css3-transforms-20121018/">http://dev.w3.org/csswg/css3-transforms/</a>
61+
<!--http://www.w3.org/TR/2012/WD-css3-transforms-20121018/-->
6162

6263
<dt>Latest version:
6364

@@ -3025,7 +3026,7 @@ <h3 id=matrix-decomposing><span class=secno>20.1. </span>Decomposing the
30253026
pdum3 = cross(row[1], row[2])
30263027
if (dot(row[0], pdum3) < 0)
30273028
for (i = 0; i < 3; i++)
3028-
scale[0] *= -1;
3029+
scale[i] *= -1;
30293030
row[i][0] *= -1
30303031
row[i][1] *= -1
30313032
row[i][2] *= -1

0 commit comments

Comments
 (0)