Skip to content

Commit 1a742f0

Browse files
authored
Fix comment (#45)
Fixes #39
1 parent 1f4abbb commit 1a742f0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

internal/fasttime/fasttime.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ import (
1111
//go:linkname now time.now
1212
func now() (sec int64, nsec int32, mono int64)
1313

14-
// Now returns a monotonic clock value. The actual value will differ across
15-
// systems, but that's okay because we generally only care about the deltas.
14+
// Now returns a monotonic and wall clock value. The actual value will differ
15+
// across systems, but that's okay because we generally only care about the
16+
// deltas.
1617
func Now() uint64 {
1718
sec, nsec, _ := now()
1819
return uint64(sec)*1e9 + uint64(nsec)

0 commit comments

Comments
 (0)