Browse Source

Doc: Date#getTime() returns ms (#5648)

* Doc: Date#getTime() returns ms

* spell out milliseconds
Kevin Leung 9 years ago
parent
commit
8afc8cd77d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/Date.hx

+ 2 - 2
std/Date.hx

@@ -51,8 +51,8 @@ extern class Date
 	function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int ) : Void;
 	function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int ) : Void;
 
 
 	/**
 	/**
-		Returns the timestamp of the date. It might only have a per-second
-		precision depending on the platforms.
+		Returns the timestamp (in milliseconds) of the date. It might
+		only have a per-second precision depending on the platforms.
 	**/
 	**/
 	function getTime() : Float;
 	function getTime() : Float;