diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2015-05-19 19:47:55 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2015-05-19 19:47:55 -0500 |
commit | 4d1506371033c9d649087d11a653f62aafd2591a (patch) | |
tree | 7e819e8b74a3158dd6015633b00872cc13d84136 /haxe.html.markdown | |
parent | 990112137212b689ae0f9e2147d4a6b2f1350b15 (diff) | |
parent | f9032e0eca3c780870127c410edf5ec85db01560 (diff) |
Merge pull request #1103 from sm4rk0/sm4rk0-patch-1
[haxe/en] Correct the condition variable
Diffstat (limited to 'haxe.html.markdown')
-rw-r--r-- | haxe.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown index c807d2d7..9b84a435 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -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 /* |