diff options
author | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-21 20:37:32 -0700 |
---|---|---|
committer | Justin Donaldson <jdonaldson@gmail.com> | 2013-08-21 20:37:32 -0700 |
commit | 27b3ab01e4b132a428a7fc2b26e8848f390dc179 (patch) | |
tree | f9f34b8a801c2a29fc91f7972d8e161370cd867d /haxe.html.markdown | |
parent | 98278338e76fb6fbdacf44142777891f238bc984 (diff) |
missing paren
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 60f374d8..0c5fdf5d 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -557,7 +557,7 @@ class ComplexEnumTest{ var e3 = ComplexEnumEnum(ComplexEnumEnum(MultiEnum(4, 'hi', 4.3))); // enums all the way down switch(e3){ // You can look for certain nested enums by specifying them explicitly: - case ComplexEnumEnum(ComplexEnumEnum(MultiEnum(i,j,k)) : { + case ComplexEnumEnum(ComplexEnumEnum(MultiEnum(i,j,k))) : { trace('$i, $j, and $k were passed into this nested monster'); } default: trace("Shouldn't be printed"); |