aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/trace/recorder.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/trace/recorder.go')
-rw-r--r--src/runtime/trace/recorder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/trace/recorder.go b/src/runtime/trace/recorder.go
index a18d764141..8617231aaa 100644
--- a/src/runtime/trace/recorder.go
+++ b/src/runtime/trace/recorder.go
@@ -112,7 +112,7 @@ func runtime_traceClockNow() uint64
// frequency is nanoseconds per timestamp unit.
type frequency float64
-// mul multiplies an unprocessed to produce a time in nanoseconds.
+// mul multiplies an unprocessed timestamp to produce a time in nanoseconds.
func (f frequency) mul(t timestamp) eventTime {
return eventTime(float64(t) * float64(f))
}