--- jsr166/src/test/tck/ReentrantLockTest.java 2003/12/28 22:44:59 1.14 +++ jsr166/src/test/tck/ReentrantLockTest.java 2003/12/29 19:05:40 1.15 @@ -107,7 +107,7 @@ public class ReentrantLockTest extends J } /** - * trylock on an unlocked lock succeeds + * tryLock on an unlocked lock succeeds */ public void testTryLock() { ReentrantLock rl = new ReentrantLock(); @@ -209,7 +209,7 @@ public class ReentrantLockTest extends J /** - * timed trylock is interruptible. + * timed tryLock is interruptible. */ public void testInterruptedException2() { final ReentrantLock lock = new ReentrantLock(); @@ -232,7 +232,7 @@ public class ReentrantLockTest extends J /** - * Trylock on a locked lock fails + * TryLock on a locked lock fails */ public void testTryLockWhenLocked() { final ReentrantLock lock = new ReentrantLock(); @@ -252,7 +252,7 @@ public class ReentrantLockTest extends J } /** - * Timed trylock on a locked lock times out + * Timed tryLock on a locked lock times out */ public void testTryLock_Timeout() { final ReentrantLock lock = new ReentrantLock();