diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-15 23:47:49 +0100 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-15 23:47:49 +0100 |
commit | edc8c4ff2776755549fab8f7fe2bc8777aa4620d (patch) | |
tree | 25838d1a3e7fdf68007c79f6754c69b96c99f1a6 | |
parent | 33d7020c21b96ec2cca6a54b2c809f5194dcd5b8 (diff) | |
parent | 1c1dda235b6808f50eb0f8685477299fba785625 (diff) |
Merge pull request #532 from ryzed/master
Update haxe.html.markdown (fix 531 issue)
-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)"); |