fixed '=' instead of '==' in if
authorMatthias Kramm <kramm@quiss.org>
Sat, 7 Feb 2009 22:43:05 +0000 (23:43 +0100)
committerMatthias Kramm <kramm@quiss.org>
Sat, 7 Feb 2009 22:43:05 +0000 (23:43 +0100)
lib/as3/ok/arrays.as

index ff2f8ee..1d9261b 100644 (file)
@@ -14,7 +14,7 @@ package {
             if(b[0]==1) trace("ok 5/8");
             if(b[1]==2) trace("ok 6/8");
             if(b[2]==3) trace("ok 7/8");
-            if(b.length=3) trace("ok 8/8");
+            if(b.length==3) trace("ok 8/8");
             
             trace("[exit]");
         }