diff options
author | hyphz <drmoose94@gmail.com> | 2017-07-18 17:56:42 +0100 |
---|---|---|
committer | hyphz <drmoose94@gmail.com> | 2017-07-18 17:56:42 +0100 |
commit | 5ab5cb9800822d607be2c6ac943377811db98158 (patch) | |
tree | 3c804707822744c20da1de54ff60fc8c3197781b /haxe.html.markdown | |
parent | 62102d02992f83b3a1fb745a39f36332dd4435b7 (diff) | |
parent | 6e7c5c793327f4a63b13e555894597915ca91fda (diff) |
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'haxe.html.markdown')
-rw-r--r-- | haxe.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown index ee214540..03b3099e 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -380,7 +380,7 @@ class LearnHaxe3{ // The "_" case above is a "wildcard" value // that will match anything. - trace("My dog's name is" + my_dog_name + trace("My dog's name is " + my_dog_name + ", and his favorite thing is a: " + favorite_thing); @@ -406,7 +406,7 @@ class LearnHaxe3{ default : "some unknown treat"; } - trace("My dog's name is" + my_dog_name + trace("My dog's name is " + my_dog_name + ", and his other favorite thing is a: " + other_favorite_thing); |