tstime/mono: fix Before function comment
Signed-off-by: Robert Fritzsche <r.fritzsche@gridx.de>pull/4076/head
parent
c85694fac4
commit
0e62a7d1a2
|
@ -53,7 +53,7 @@ func (t Time) After(n Time) bool {
|
||||||
return t > n
|
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 {
|
func (t Time) Before(n Time) bool {
|
||||||
return t < n
|
return t < n
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue