From e706ac6d3b98cb02309d6da4ef711af1c96e2d28 Mon Sep 17 00:00:00 2001 From: yangchnet <1048887414@qq.com> Date: Mon, 28 Jun 2021 20:59:16 +0800 Subject: [PATCH] typo: understad -> understand --- limited_pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limited_pool.go b/limited_pool.go index cd4e317..00c2f23 100644 --- a/limited_pool.go +++ b/limited_pool.go @@ -78,7 +78,7 @@ func (p *limitedPool) newWorker(work chan *workUnit, cancel chan struct{}) { case wu = <-work: // possible for one more nilled out value to make it - // through when channel closed, don't quite understad the why + // through when channel closed, don't quite understand the why if wu == nil { continue }