--- jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/10/30 16:05:35 1.72 +++ jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/10/30 16:54:26 1.74 @@ -103,7 +103,7 @@ import java.io.Serializable; * does not allow {@code null} to be used as a key or value. * *

ConcurrentHashMapV8s support parallel operations using the {@link - * ForkJoinPool#commonPool}. (Task that may be used in other contexts + * ForkJoinPool#commonPool}. (Tasks that may be used in other contexts * are available in class {@link ForkJoinTasks}). These operations are * designed to be safely, and often sensibly, applied even with maps * that are being concurrently updated by other threads; for example, @@ -193,9 +193,9 @@ import java.io.Serializable; * processing are common but not guaranteed. Operations involving * brief functions on small maps may execute more slowly than * sequential loops if the underlying work to parallelize the - * computation is more expensive than the computation - * itself. Similarly, parallelization may not lead to much actual - * parallelism if all processors are busy performing unrelated tasks. + * computation is more expensive than the computation itself. + * Similarly, parallelization may not lead to much actual parallelism + * if all processors are busy performing unrelated tasks. * *

All arguments to all task methods must be non-null. *