瀏覽代碼

Update Constructible API docs

Fix broken list rendering
Mark Knol 7 年之前
父節點
當前提交
a6096fdc27
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      std/haxe/Constraints.hx

+ 4 - 3
std/haxe/Constraints.hx

@@ -43,8 +43,9 @@ abstract FlatEnum(Dynamic) { }
 /**
 /**
 	This type unifies with any instance of classes that have a constructor
 	This type unifies with any instance of classes that have a constructor
 	which
 	which
-		* is public and
-		* unifies with the type used for type parameter `T`.
+
+	  * is public and
+	  * unifies with the type used for type parameter `T`.
 
 
 	If a type parameter A is assigned to a type parameter B which is constrained
 	If a type parameter A is assigned to a type parameter B which is constrained
 	to `Constructible<T>`, A must be explicitly constrained to
 	to `Constructible<T>`, A must be explicitly constrained to
@@ -64,4 +65,4 @@ interface IMap<K,V> {
 	public function iterator():Iterator<V>;
 	public function iterator():Iterator<V>;
 	public function copy():IMap<K,V>;
 	public function copy():IMap<K,V>;
 	public function toString():String;
 	public function toString():String;
-}
+}