aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/runtime/rwmutex.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/runtime/rwmutex.go')
-rw-r--r--libgo/go/runtime/rwmutex.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/runtime/rwmutex.go b/libgo/go/runtime/rwmutex.go
index 7eeb559..a6da4c9 100644
--- a/libgo/go/runtime/rwmutex.go
+++ b/libgo/go/runtime/rwmutex.go
@@ -10,7 +10,7 @@ import (
// This is a copy of sync/rwmutex.go rewritten to work in the runtime.
-// An rwmutex is a reader/writer mutual exclusion lock.
+// A rwmutex is a reader/writer mutual exclusion lock.
// The lock can be held by an arbitrary number of readers or a single writer.
// This is a variant of sync.RWMutex, for the runtime package.
// Like mutex, rwmutex blocks the calling M.