diff options
author | ryzed <ed.ryzhov@gmail.com> | 2014-02-15 23:10:35 +0300 |
---|---|---|
committer | ryzed <ed.ryzhov@gmail.com> | 2014-02-15 23:10:35 +0300 |
commit | 1c1dda235b6808f50eb0f8685477299fba785625 (patch) | |
tree | 25838d1a3e7fdf68007c79f6754c69b96c99f1a6 /haxe.html.markdown | |
parent | 33d7020c21b96ec2cca6a54b2c809f5194dcd5b8 (diff) |
Update haxe.html.markdown
fixed typo
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 eb39834e..6a868f09 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -231,7 +231,7 @@ class LearnHaxe3{ trace((4 + 3) + " is the value for (4 + 3)"); trace((5 - 1) + " is the value for (5 - 1)"); trace((2 * 4) + " is the value for (2 * 4)"); - trace((8 / 4) + " is the value for (8 / 3) (division always produces Floats)"); + trace((8 / 3) + " is the value for (8 / 3) (division always produces Floats)"); trace((12 % 4) + " is the value for (12 % 4)"); |