Skip to content

Commit 96201a2

Browse files
committed
Fix typo in pseudo code.
1 parent 30cd435 commit 96201a2

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

css3-transforms/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2012-10-18 dschulze@adobe.com
2+
Fix typo in pseudo code.
3+
https://www.w3.org/Bugs/Public/show_bug.cgi?id=18961
4+
15
2012-08-29 dschulze@adobe.com
26
Added skew() again for compatibility with legacy content.
37

css3-transforms/Transforms.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2896,7 +2896,7 @@ <h3 id="matrix-decomposing">Decomposing the Matrix</h3>
28962896
pdum3 = cross(row[1], row[2])
28972897
if (dot(row[0], pdum3) < 0)
28982898
for (i = 0; i < 3; i++)
2899-
scale[0] *= -1;
2899+
scale[i] *= -1;
29002900
row[i][0] *= -1
29012901
row[i][1] *= -1
29022902
row[i][2] *= -1

0 commit comments

Comments
 (0)