mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
Merge pull request #1103 from sm4rk0/sm4rk0-patch-1
[haxe/en] Correct the condition variable
This commit is contained in:
commit
4d15063710
@ -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