소스 검색

fix haxe.maco.Constant value documentation (#5333)

They need two asterisks  
http://api.haxe.org/haxe/macro/Constant.html
Mark Knol 9 년 전
부모
커밋
4ef53ebe41
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      std/haxe/macro/Expr.hx

+ 3 - 3
std/haxe/macro/Expr.hx

@@ -56,17 +56,17 @@ enum Constant {
 	**/
 	CInt( v : String );
 
-	/*
+	/**
 		Represents a float literal.
 	**/
 	CFloat( f : String );
 
-	/*
+	/**
 		Represents a string literal.
 	**/
 	CString( s : String );
 
-	/*
+	/**
 		Represents an indentifier.
 	**/
 	CIdent( s : String );