Author: lou
Date: 2007-10-19 08:09:54 -0700 (Fri, 19 Oct 2007)
New Revision: 6924

Modified:
   openlaszlo/trunk/docs/src/developers/programs/debugging-$3.lzx
Log:
Change 20071019-lou-L by [EMAIL PROTECTED] on 2007-10-19 11:07:01 AST
    in /Users/lou/src/svn/openlaszlo/trunk/docs/src
    for http://svn.openlaszlo.org/openlaszlo/trunk/docs/src

Summary: broken example in dbug chapter of the dguide

Bugs Fixed: LPP-4894

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: John Sundman

Documentation: Fixed the sample code by replacing the ">" in the inner loop 
with "<"



Modified: openlaszlo/trunk/docs/src/developers/programs/debugging-$3.lzx
===================================================================
--- openlaszlo/trunk/docs/src/developers/programs/debugging-$3.lzx      
2007-10-19 14:13:52 UTC (rev 6923)
+++ openlaszlo/trunk/docs/src/developers/programs/debugging-$3.lzx      
2007-10-19 15:09:54 UTC (rev 6924)
@@ -1,7 +1,7 @@
 
 <canvas debug="true" height="150">
   <handler name="oninit"><![CDATA[
-    for (var i = 0; i > 10; i ++) {
+    for (var i = 0; i < 10; i ++) {
       canvas.width();
     }
   ]]></handler>


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to