diff options
| author | tgschultz <tgschultz@gmail.com> | 2018-04-18 19:57:47 -0500 |
|---|---|---|
| committer | tgschultz <tgschultz@gmail.com> | 2018-04-18 19:57:47 -0500 |
| commit | 3c9b6f8cd54b9ffa1fd4c32fd2811a7c20c04b62 (patch) | |
| tree | 3af3880ee8caf9ca97b036586ed72b506a0f837e /std | |
| parent | fdebe38fa3763fe60aab191ed3fb44bfdb9a3b6f (diff) | |
| download | zig-3c9b6f8cd54b9ffa1fd4c32fd2811a7c20c04b62.tar.gz zig-3c9b6f8cd54b9ffa1fd4c32fd2811a7c20c04b62.zip | |
Fixed another incorrect comment
Diffstat (limited to 'std')
| -rw-r--r-- | std/os/time.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/os/time.zig b/std/os/time.zig index a872f32a68..90a8b15c03 100644 --- 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, |
