Browse Source

Lua : minor genlua change in trace message

Justin Donaldson 10 years ago
parent
commit
a2d417188d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      genlua.ml

+ 2 - 2
genlua.ml

@@ -1519,10 +1519,10 @@ let generate com =
 		newline ctx
 	);
 
-	spr ctx "--[[begin type forwards--]]"; newline ctx;
+	spr ctx "--[[begin class hoists--]]"; newline ctx;
 	List.iter (generate_type_forward ctx) com.types;
 	newline ctx;
-	spr ctx "--[[end type forwards--]]"; newline ctx;
+	spr ctx "--[[end class hoists--]]"; newline ctx;
 
 	spr ctx "--[[begin __init__ hoist --]]"; newline ctx;
 	List.iter (gen__init__hoist ctx) (List.rev ctx.inits);