Skip to content

Commit

Permalink
Update haxe.html.markdown
Browse files Browse the repository at this point in the history
fixed typo
  • Loading branch information
ryzed committed Feb 15, 2014
1 parent 33d7020 commit 1c1dda2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haxe.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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)");


Expand Down

0 comments on commit 1c1dda2

Please sign in to comment.