--- jsr166/src/main/java/util/ArrayDeque.java 2005/03/08 17:52:02 1.3 +++ jsr166/src/main/java/util/ArrayDeque.java 2005/03/08 19:07:39 1.4 @@ -52,7 +52,7 @@ public class ArrayDeque extends Abstr implements Deque, Cloneable, Serializable { /** - * The array in which the elements of in the deque are stored. + * The array in which the elements of the deque are stored. * The capacity of the deque is the length of this array, which is * always a power of two. The array is never allowed to become * full, except transiently within an addX method where it is @@ -147,7 +147,7 @@ public class ArrayDeque extends Abstr } /** - * Constructs an empty array deque with the an initial capacity + * Constructs an empty array deque with an initial capacity * sufficient to hold 16 elements. */ public ArrayDeque() {