--- jsr166/src/test/tck/CountDownLatchTest.java 2003/09/25 11:02:41 1.4 +++ jsr166/src/test/tck/CountDownLatchTest.java 2003/10/05 23:00:40 1.5 @@ -38,9 +38,9 @@ public class CountDownLatchTest extends } /** - * countDown has no effect when count is zero + * countDown decrements count when positive and has no effect when zero */ - public void testcountDown() { + public void testCountDown() { final CountDownLatch l = new CountDownLatch(1); assertEquals(1, l.getCount()); l.countDown(); @@ -112,7 +112,7 @@ public class CountDownLatchTest extends } /** - * await throws IE ig interrupted before counted down + * await throws IE if interrupted before counted down */ public void testAwait_InterruptedException() { final CountDownLatch l = new CountDownLatch(1); @@ -136,7 +136,7 @@ public class CountDownLatchTest extends } /** - * timed await throws IE ig interrupted before counted down + * timed await throws IE if interrupted before counted down */ public void testTimedAwait_InterruptedException() { final CountDownLatch l = new CountDownLatch(1);