From 0e62a7d1a247eb312f340b08e92942f73149f11f Mon Sep 17 00:00:00 2001 From: Robert Fritzsche Date: Sat, 5 Mar 2022 17:57:52 +0100 Subject: [PATCH] tstime/mono: fix Before function comment Signed-off-by: Robert Fritzsche --- tstime/mono/mono.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }