diff --git a/tstime/mono/mono.go b/tstime/mono/mono.go index c639c47a7..a04ce7cd0 100644 --- a/tstime/mono/mono.go +++ b/tstime/mono/mono.go @@ -53,7 +53,7 @@ func (t Time) After(n Time) bool { return t > n } -// After reports t < n, whether t is before n. +// Before reports t < n, whether t is before n. func (t Time) Before(n Time) bool { return t < n }