1
0
mirror of https://github.com/go-kit/kit.git synced 2025-07-17 01:12:38 +02:00

metrics: Timer comment grammar feedback

This commit is contained in:
Peter Bourgon
2016-09-07 00:40:10 +02:00
parent d595679b6d
commit 1cca2e4792

View File

@ -9,7 +9,7 @@ type Timer struct {
t time.Time
}
// NewTimer wraps the given histogram and marks the current time.
// NewTimer wraps the given histogram and records the current time.
func NewTimer(h Histogram) *Timer {
return &Timer{
h: h,