--- jsr166/src/main/java/util/Deque.java 2004/12/28 12:14:07 1.1 +++ jsr166/src/main/java/util/Deque.java 2005/03/08 12:27:06 1.2 @@ -24,8 +24,8 @@ package java.util; * Deque implementations; in most implementations, insert * operations cannot fail. * - *

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

+ *

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

* * * @@ -131,7 +131,7 @@ package java.util; * a deque is used as a queue or a stack; in either case, elements are * drawn from the beginning of the deque. * - *

This inteface provides two methods to to remove interior + *

This interface provides two methods to remove interior * elements, {@link #removeFirstOccurrence removeFirstOccurrence} and * {@link #removeLastOccurrence removeLastOccurrence}. Unlike the * {@link List} interface, this interface does not provide support for @@ -419,7 +419,7 @@ public interface Deque extends Queue< /** * Pops an element from the stack represented by this deque. In other - * words, removes and returns the the first element of this deque. + * words, removes and returns the first element of this deque. * *

This method is equivalent to {@link #removeFirst()}. *