--- jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/08/13 18:13:30 1.53 +++ jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/08/13 18:25:53 1.55 @@ -2898,27 +2898,27 @@ public class ConcurrentHashMapV8 } /** - * Returns a partionable iterator of the keys in this map. + * Returns a partitionable iterator of the keys in this map. * - * @return a partionable iterator of the keys in this map + * @return a partitionable iterator of the keys in this map */ public Spliterator keySpliterator() { return new KeyIterator(this); } /** - * Returns a partionable iterator of the values in this map. + * Returns a partitionable iterator of the values in this map. * - * @return a partionable iterator of the values in this map + * @return a partitionable iterator of the values in this map */ public Spliterator valueSpliterator() { return new ValueIterator(this); } /** - * Returns a partionable iterator of the entries in this map. + * Returns a partitionable iterator of the entries in this map. * - * @return a partionable iterator of the entries in this map + * @return a partitionable iterator of the entries in this map */ public Spliterator> entrySpliterator() { return new EntryIterator(this); @@ -3518,7 +3518,7 @@ public class ConcurrentHashMapV8 /** * An extended view of a ConcurrentHashMap supporting bulk - * parallel operations. These operations are designed to be be + * parallel operations. These operations are designed to be * safely, and often sensibly, applied even with maps that are * being concurrently updated by other threads; for example, when * computing a snapshot summary of the values in a shared @@ -4811,7 +4811,7 @@ public class ConcurrentHashMapV8 /** * Base for FJ tasks for bulk operations. This adds a variant of - * CountedCompleters and some split and merge bookeeping to + * CountedCompleters and some split and merge bookkeeping to * iterator functionality. The forEach and reduce methods are * similar to those illustrated in CountedCompleter documentation, * except that bottom-up reduction completions perform them within