mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03: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;
|
||||
do{
|
||||
trace("do statement always runs at least once");
|
||||
} while (i > 0);
|
||||
} while (l > 0);
|
||||
|
||||
// for loop
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user