From 040a89eefc9a1b090c876ec1317303d3c679a32b Mon Sep 17 00:00:00 2001 From: Darren Jacques Date: Fri, 29 Nov 2024 10:01:03 -0800 Subject: [PATCH] Fix comments --- ticker.go | 4 ++-- timer.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ticker.go b/ticker.go index 1e1be4b..aa56952 100644 --- a/ticker.go +++ b/ticker.go @@ -22,8 +22,8 @@ type fakeTicker struct { // The channel associated with the firer, used to send expiration times. c chan time.Time - // The time when the firer expires. Only meaningful if the firer is currently - // one of a fakeClock's waiters. + // The time when the ticker expires. Only meaningful if the ticker is currently + // one of a FakeClock's waiters. exp time.Time // reset and stop provide the implementation of the respective exported diff --git a/timer.go b/timer.go index 22a017b..e7e1d40 100644 --- a/timer.go +++ b/timer.go @@ -22,7 +22,7 @@ type fakeTimer struct { c chan time.Time // The time when the firer expires. Only meaningful if the firer is currently - // one of a fakeClock's waiters. + // one of a FakeClock's waiters. exp time.Time // reset and stop provide the implementation of the respective exported