From 150ce9f3f6ed0d58ac27de0d5b8a310644dc5a1f Mon Sep 17 00:00:00 2001 From: Ryan Russell Date: Thu, 15 Sep 2022 03:29:26 -0500 Subject: [PATCH] docs(wdclient): readability fix (#3685) Signed-off-by: Ryan Russell Signed-off-by: Ryan Russell --- weed/wdclient/resource_pool/semaphore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/wdclient/resource_pool/semaphore.go b/weed/wdclient/resource_pool/semaphore.go index ff35d5bc5..9bd6afc33 100644 --- a/weed/wdclient/resource_pool/semaphore.go +++ b/weed/wdclient/resource_pool/semaphore.go @@ -105,7 +105,7 @@ func (s *unboundedSemaphore) Release() { s.lock.Lock() s.counter += 1 if s.counter > 0 { - // Not broadcasting here since it's unlike we can satify all waiting + // Not broadcasting here since it's unlike we can satisfy all waiting // goroutines. Instead, we will Signal again if there are left over // quota after Acquire, in case of lost wakeups. s.cond.Signal()