summaryrefslogtreecommitdiffhomepage
path: root/haxe.html.markdown
diff options
context:
space:
mode:
authorsm4rk0 <stankovic.marko@gmail.com>2015-05-19 18:17:35 +0200
committersm4rk0 <stankovic.marko@gmail.com>2015-05-19 18:17:35 +0200
commitf9032e0eca3c780870127c410edf5ec85db01560 (patch)
tree90dd10cead3e51ab1dafeb9dadd19aba3ed7926e /haxe.html.markdown
parent48c24f7e45298183c8551bb5112f9e62d021b30f (diff)
Update haxe.html.markdown
Correct the condition variable for "do statement always runs at least once" section
Diffstat (limited to 'haxe.html.markdown')
-rw-r--r--haxe.html.markdown2
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
/*