commit 3c9b6f8cd54b9ffa1fd4c32fd2811a7c20c04b62 (tree)
parent fdebe38fa3763fe60aab191ed3fb44bfdb9a3b6f
Author: tgschultz <tgschultz@gmail.com>
Date: Wed, 18 Apr 2018 19:57:47 -0500
Fixed another incorrect comment
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/std/os/time.zig b/std/os/time.zig
@@ -56,7 +56,7 @@ pub fn timestamp() u64 {
return @divFloor(milliTimestamp(), ms_per_s);
}
-/// Get the posix timestamp, UTC, in nanoseconds
+/// Get the posix timestamp, UTC, in milliseconds
pub const milliTimestamp = switch(builtin.os) {
Os.windows => milliTimestampWindows,
Os.linux => milliTimestampPosix,