diff -r 6214297bf27d -r f2638f396c41 jdk/src/share/classes/java/util/concurrent/package-info.java --- a/jdk/src/share/classes/java/util/concurrent/package-info.java Wed Jul 03 11:58:09 2013 +0200 +++ b/jdk/src/share/classes/java/util/concurrent/package-info.java Wed Jul 03 11:58:10 2013 +0200 @@ -48,7 +48,7 @@ * * {@link java.util.concurrent.Executor} is a simple standardized * interface for defining custom thread-like subsystems, including - * thread pools, asynchronous IO, and lightweight task frameworks. + * thread pools, asynchronous I/O, and lightweight task frameworks. * Depending on which concrete Executor class is being used, tasks may * execute in a newly created thread, an existing task-execution thread, * or the thread calling {@link java.util.concurrent.Executor#execute @@ -102,8 +102,10 @@ *
Five implementations in {@code java.util.concurrent} support * the extended {@link java.util.concurrent.BlockingQueue} @@ -117,7 +119,7 @@ * for producer-consumer, messaging, parallel tasking, and * related concurrent designs. * - *
Extended interface {@link java.util.concurrent.TransferQueue}, + *
Extended interface {@link java.util.concurrent.TransferQueue}, * and implementation {@link java.util.concurrent.LinkedTransferQueue} * introduce a synchronous {@code transfer} method (along with related * features) in which a producer may optionally block awaiting its @@ -216,9 +218,9 @@ * it may (or may not) reflect any updates since the iterator was * created. * - *