--- jsr166/src/main/java/util/PriorityQueue.java 2004/05/27 11:05:44 1.49 +++ jsr166/src/main/java/util/PriorityQueue.java 2004/06/02 23:45:46 1.50 @@ -32,8 +32,10 @@ package java.util; * grows automatically. The details of the growth policy are not * specified. * - *

This class implements all of the optional methods of - * the {@link Collection} and {@link Iterator} interfaces. The + *

This class and its iterator implement all of the + * optional methods of the {@link Collection} and {@link + * Iterator} interfaces. + * The * Iterator provided in method {@link #iterator()} is not * guaranteed to traverse the elements of the PriorityQueue in any * particular order. If you need ordered traversal, consider using @@ -327,7 +329,7 @@ public class PriorityQueue extends Ab /** * Removes a single instance of the specified element from this - * collection, if it is present. + * queue, if it is present. */ public boolean remove(Object o) { if (o == null)