--- jsr166/src/main/java/util/LinkedList.java 2005/03/01 01:27:15 1.19 +++ jsr166/src/main/java/util/LinkedList.java 2005/03/06 12:06:17 1.20 @@ -578,7 +578,7 @@ public class LinkedList /** * Pushes an element onto the stack represented by this list. In other - * words, inserts the element to the front this list. + * words, inserts the element to the front of this list. * *

This method is equivalent to {@link #addFirst}. * @@ -591,7 +591,7 @@ public class LinkedList /** * Pops an element from the stack represented by this list. In other - * words, removes and returns the the first element of this list. + * words, removes and returns the first element of this list. * *

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