From 0b4d87da22207553b7d7f912c11d69c943c2f426 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Wed, 7 Oct 2009 13:29:19 +0000 Subject: [PATCH] Add missing word in comment. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33479 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/lock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/kernel/lock.cpp b/src/system/kernel/lock.cpp index cb4299c9cd..76220c71de 100644 --- a/src/system/kernel/lock.cpp +++ b/src/system/kernel/lock.cpp @@ -173,7 +173,7 @@ rw_lock_wait(rw_lock* lock, bool writer) static void rw_lock_unblock(rw_lock* lock) { - // Check whether there any waiting threads at all and whether anyone + // Check whether there are any waiting threads at all and whether anyone // has the write lock. rw_lock_waiter* waiter = lock->waiters; if (waiter == NULL || lock->holder > 0)