diff options
author | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-19 14:10:48 -0700 |
---|---|---|
committer | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-19 14:10:48 -0700 |
commit | c39c3680cf18be14fdda3740e8b3b6d348d54f34 (patch) | |
tree | 4f3c942d4ec5fa4056de53895609fe74454febc6 /haxe.html.markdown | |
parent | 64e889d011a6f0e9968b68b1a982bbe714525cb8 (diff) |
fix comment 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 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"); /* |