From d9010e684b4096bd0631f00d8aacd79296f2d490 Mon Sep 17 00:00:00 2001 From: godchen Date: Wed, 20 Oct 2021 15:42:45 +0800 Subject: [PATCH] [skip ci]Fix allocator typo (#10274) Signed-off-by: godchen --- internal/allocator/allocator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/allocator/allocator.go b/internal/allocator/allocator.go index 2e1d0b2a4..cbe13e399 100644 --- a/internal/allocator/allocator.go +++ b/internal/allocator/allocator.go @@ -79,7 +79,7 @@ type EmptyTicker struct { tChan <-chan time.Time } -// Chan return a read-only channel from which you can only receive time.Time type data. +// Chan returns a read-only channel from which you can only receive time.Time type data. // As for EmptyTicker, you will never read data from Chan. func (t *EmptyTicker) Chan() <-chan time.Time { return t.tChan -- GitLab