From 02dd423ed51a12bfbe16842593621d22285187fa Mon Sep 17 00:00:00 2001 From: Xiaoxuan Wang <103478229+wangxiaoxuan273@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:23:18 +0800 Subject: [PATCH] Update content/oci/oci.go Co-authored-by: Lixia (Sylvia) Lei Signed-off-by: Xiaoxuan Wang <103478229+wangxiaoxuan273@users.noreply.github.com> --- content/oci/oci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/oci/oci.go b/content/oci/oci.go index 9665a48a..919e3738 100644 --- a/content/oci/oci.go +++ b/content/oci/oci.go @@ -63,7 +63,7 @@ type Store struct { // has the exclusive access to Store if a delete operation is underway. Operations // such as Fetch, Push use sync.RLock(), while Delete uses sync.Lock(). sync sync.RWMutex - // indexLock ensures that only one process is writing to the index. + // indexLock ensures that only one go-routine is writing to the index. indexLock sync.Mutex }