--- jsr166/src/main/java/util/Queue.java 2003/06/07 18:31:00 1.4 +++ jsr166/src/main/java/util/Queue.java 2003/06/08 00:44:20 1.5 @@ -12,10 +12,10 @@ package java.util; * additional insertion, extraction, and inspection operations. * *

Queues typically, but do not necessarily, order elements in a - * FIFO (first-in-first-out) manner. Among the exceptions are priority - * queues, which order elements according to a supplied comparators, or - * the elements natural ordering. Every Queue implementation must specify - * its ordering guarantees. + * FIFO (first-in-first-out) manner. Among the exceptions are + * priority queues, which order elements according to a supplied + * comparator, or the elements' natural ordering. Every Queue + * implementation must specify its ordering guarantees. * *

The {@link #offer(E)} method adds an element if possible, otherwise * returning false. This differs from the {@link