--- jsr166/src/main/java/util/ArrayDeque.java 2005/03/22 01:29:00 1.5 +++ jsr166/src/main/java/util/ArrayDeque.java 2005/03/22 16:48:32 1.6 @@ -198,7 +198,7 @@ public class ArrayDeque extends Abstr } /** - * Inserts the specified element to the end of this deque. + * Inserts the specified element at the end of this deque. * This method is equivalent to {@link Collection#add} and * {@link #push}. * @@ -260,7 +260,7 @@ public class ArrayDeque extends Abstr } /** - * Inserts the specified element to the end of this deque. + * Inserts the specified element at the end of this deque. * * @param e the element to insert * @return true (as per the spec for {@link Deque#offerLast}) @@ -408,7 +408,7 @@ public class ArrayDeque extends Abstr // *** Queue methods *** /** - * Inserts the specified element to the end of this deque. + * Inserts the specified element at the end of this deque. * *

This method is equivalent to {@link #offerLast}. * @@ -421,7 +421,7 @@ public class ArrayDeque extends Abstr } /** - * Inserts the specified element to the end of this deque. + * Inserts the specified element at the end of this deque. * *

This method is equivalent to {@link #addLast}. *