[haiku-commits] r33479 - haiku/trunk/src/system/kernel

  • From: mmlr@xxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 7 Oct 2009 15:29:20 +0200 (CEST)

Author: mmlr
Date: 2009-10-07 15:29:19 +0200 (Wed, 07 Oct 2009)
New Revision: 33479
Changeset: http://dev.haiku-os.org/changeset/33479/haiku

Modified:
   haiku/trunk/src/system/kernel/lock.cpp
Log:
Add missing word in comment.


Modified: haiku/trunk/src/system/kernel/lock.cpp
===================================================================
--- haiku/trunk/src/system/kernel/lock.cpp      2009-10-07 11:58:28 UTC (rev 
33478)
+++ haiku/trunk/src/system/kernel/lock.cpp      2009-10-07 13:29:19 UTC (rev 
33479)
@@ -173,7 +173,7 @@
 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)


Other related posts:

  • » [haiku-commits] r33479 - haiku/trunk/src/system/kernel - mmlr