소스 검색

make Std.is a bit more deprecated [skip ci]

Aleksandr Kuzmenko 5 년 전
부모
커밋
45cd35acb6
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      std/Std.hx

+ 2 - 2
std/Std.hx

@@ -28,11 +28,11 @@
 **/
 extern class Std {
 	/**
+		DEPRECATED. Use `Std.isOfType(v, t)` instead.
+
 		Tells if a value `v` is of the type `t`. Returns `false` if `v` or `t` are null.
 
 		If `t` is a class or interface with `@:generic` meta, the result is `false`.
-
-		DEPRECATED. Use `Std.isOfType(v, t)` instead.
 	**/
 	public static function is(v:Dynamic, t:Dynamic):Bool;