From 7e4dccfa8c96f966b71b6167d164ec69f30da974 Mon Sep 17 00:00:00 2001 From: jhb Date: Tue, 27 Mar 2007 15:09:10 +0000 Subject: [PATCH] Fix a comment grammar nit. --- sys/sys/rwlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/rwlock.h b/sys/sys/rwlock.h index 347995c5102e..9f72a05e5c3a 100644 --- a/sys/sys/rwlock.h +++ b/sys/sys/rwlock.h @@ -58,7 +58,7 @@ * barriers as mutexes: _acq when acquiring a write lock and _rel when * releasing a write lock. Read locks also need to use an _acq barrier when * acquiring a read lock. However, since read locks do not update any - * locked data (modulo bugs of course), no memory barrier is needed to when + * locked data (modulo bugs of course), no memory barrier is needed when * releasing a read lock. */