--- jsr166/src/main/java/util/PriorityQueue.java 2003/09/15 12:02:23 1.42 +++ jsr166/src/main/java/util/PriorityQueue.java 2003/10/19 13:38:29 1.45 @@ -15,7 +15,7 @@ package java.util; * {@link java.util.Comparator}, depending on which constructor is * used. A priority queue does not permit null elements. * A priority queue relying on natural ordering also does not - * permit insertion of non-comparable objects (doing so results + * permit insertion of non-comparable objects (doing so may result * in ClassCastException). * *

The head of this queue is the least element @@ -59,6 +59,7 @@ package java.util; * @since 1.5 * @version %I%, %G% * @author Josh Bloch + * @param the type of elements held in this collection */ public class PriorityQueue extends AbstractQueue implements Queue, java.io.Serializable {