summaryrefslogtreecommitdiffhomepage
path: root/haxe.html.markdown
diff options
context:
space:
mode:
authorJustin Donaldson <jdonaldson@gmail.com>2013-08-19 14:10:48 -0700
committerJustin Donaldson <jdonaldson@gmail.com>2013-08-19 14:10:48 -0700
commitc39c3680cf18be14fdda3740e8b3b6d348d54f34 (patch)
tree4f3c942d4ec5fa4056de53895609fe74454febc6 /haxe.html.markdown
parent64e889d011a6f0e9968b68b1a982bbe714525cb8 (diff)
fix comment typo
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 9288fc87..82031291 100644
--- a/haxe.html.markdown
+++ b/haxe.html.markdown
@@ -175,7 +175,7 @@ class LearnHaxe3{
argument that sets a type parameter.
*/
var m3 = new Map();
- m3.set(6, 'baz'); // m2 is now a Map<Int,String>
+ m3.set(6, 'baz'); // m3 is now a Map<Int,String>
trace(m3 + " is the value for m3");
/*