ソースを参照

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
 	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
 	to `Constructible<T>`, A must be explicitly constrained to
@@ -64,4 +65,4 @@ interface IMap<K,V> {
 	public function iterator():Iterator<V>;
 	public function copy():IMap<K,V>;
 	public function toString():String;
-}
+}