Browse Source

fixed issue #611

Nicolas Cannasse 13 years ago
parent
commit
e56660de47
1 changed files with 4 additions and 1 deletions
  1. 4 1
      std/tools/haxedoc/HtmlPrinter.hx

+ 4 - 1
std/tools/haxedoc/HtmlPrinter.hx

@@ -424,8 +424,11 @@ class HtmlPrinter {
 		print(makePathUrl(path,"type"));
 		if( params != null && !params.isEmpty() ) {
 			print("<");
-			for( t in params )
+			var first = true;
+			for( t in params ) {
+				if( first ) first = false else print(", ");
 				processType(t);
+			}
 			print(">");
 		}
 	}