--- jsr166/src/jsr166x/Deque.java 2004/12/28 16:15:09 1.5 +++ jsr166/src/jsr166x/Deque.java 2009/11/16 04:16:42 1.6 @@ -25,9 +25,9 @@ import java.util.*; // XXX This impor * Deque implementations; in most implementations, insert * operations cannot fail. * - *

The twelve methods described above are are summarized in the + *

The twelve methods described above are are summarized in the * follwoing table:

- * + * * * * @@ -145,7 +145,7 @@ import java.util.*; // XXX This impor * take advantage of the ability to insert nulls. This is so because * null is used as a special return value by various methods * to indicated that the deque is empty. - * + * *

Deque implementations generally do not define * element-based versions of the equals and hashCode * methods, but instead inherit the identity-based versions from class @@ -339,7 +339,7 @@ public interface Deque extends Queue< /** * Inserts the specified element into the queue represented by this * deque unless it would violate capacity restrictions. In other words, - * inserts the specified element as the last element of this deque. + * inserts the specified element as the last element of this deque. * *

This method is equivalent to {@link #addLast}. * @@ -435,7 +435,7 @@ public interface Deque extends Queue< /** * Returns an iterator over the elements in this deque. The elements * will be ordered from first (head) to last (tail). - * + * * @return an Iterator over the elements in this deque */ Iterator iterator();