--- jsr166/src/main/java/util/PriorityQueue.java 2003/08/06 01:57:53 1.23 +++ jsr166/src/main/java/util/PriorityQueue.java 2003/08/06 18:22:09 1.24 @@ -81,7 +81,7 @@ public class PriorityQueue extends Ab /** * Creates a PriorityQueue with the default initial capacity * (11) that orders its elements according to their natural - * ordering (using Comparable.) + * ordering (using Comparable). */ public PriorityQueue() { this(DEFAULT_INITIAL_CAPACITY, null); @@ -90,7 +90,7 @@ public class PriorityQueue extends Ab /** * Creates a PriorityQueue with the specified initial capacity * that orders its elements according to their natural ordering - * (using Comparable.) + * (using Comparable). * * @param initialCapacity the initial capacity for this priority queue. * @throws IllegalArgumentException if initialCapacity is less @@ -531,7 +531,7 @@ public class PriorityQueue extends Ab /** * Returns the comparator used to order this collection, or null * if this collection is sorted according to its elements natural ordering - * (using Comparable.) + * (using Comparable). * * @return the comparator used to order this collection, or null * if this collection is sorted according to its elements natural ordering.