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{} }