mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-07 23:38:32 +00:00
Update haxe.html.markdown
Correct the condition variable for "do statement always runs at least once" section
This commit is contained in:
parent
48c24f7e45
commit
f9032e0eca
@ -323,7 +323,7 @@ class LearnHaxe3{
|
|||||||
var l = 0;
|
var l = 0;
|
||||||
do{
|
do{
|
||||||
trace("do statement always runs at least once");
|
trace("do statement always runs at least once");
|
||||||
} while (i > 0);
|
} while (l > 0);
|
||||||
|
|
||||||
// for loop
|
// for loop
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user