From 53dc219a814fb07867a2fe1d06ba76d982a9a55b Mon Sep 17 00:00:00 2001 From: georgehao Date: Tue, 4 Feb 2025 17:36:01 +0800 Subject: [PATCH] update comment --- internal/syncx/mutex.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/syncx/mutex.go b/internal/syncx/mutex.go index d8e7df1f8b..f94868c4ab 100644 --- a/internal/syncx/mutex.go +++ b/internal/syncx/mutex.go @@ -17,8 +17,8 @@ // Package syncx contains exotic synchronization primitives. package syncx -// ClosableMutex is a mutex that can be closed. -// Once closed, it cannot be locked again. +// ClosableMutex is a mutex that can also be closed. +// Once closed, it can never be taken again. type ClosableMutex struct { ch chan struct{} }