diff options
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"); |