[skip ci]Fix allocator typo (#10274)

Signed-off-by: godchen <qingxiang.chen@zilliz.com>
pull/10309/head
godchen 2021-10-20 15:42:45 +08:00 committed by GitHub
parent 48648c818b
commit d9010e684b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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