diff options
author | sm4rk0 <stankovic.marko@gmail.com> | 2015-05-19 18:17:35 +0200 |
---|---|---|
committer | sm4rk0 <stankovic.marko@gmail.com> | 2015-05-19 18:17:35 +0200 |
commit | f9032e0eca3c780870127c410edf5ec85db01560 (patch) | |
tree | 90dd10cead3e51ab1dafeb9dadd19aba3ed7926e | |
parent | 48c24f7e45298183c8551bb5112f9e62d021b30f (diff) |
Update haxe.html.markdown
Correct the condition variable for "do statement always runs at least once" section
-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 /* |