--- jsr166/src/main/java/util/LinkedList.java 2005/07/18 01:14:34 1.37 +++ jsr166/src/main/java/util/LinkedList.java 2005/07/18 19:14:17 1.38 @@ -193,7 +193,7 @@ public class LinkedList *

This method is equivalent to {@link #addLast}. * * @param e element to be appended to this list - * @return true (as per the spec for {@link Collection#add}) + * @return true (as specified by {@link Collection#add}) */ public boolean add(E e) { addBefore(e, header); @@ -486,7 +486,7 @@ public class LinkedList * Adds the specified element as the tail (last element) of this list. * * @param e the element to add - * @return true (as per the spec for {@link Queue#offer}) + * @return true (as specified by {@link Queue#offer}) * @since 1.5 */ public boolean offer(E e) { @@ -498,7 +498,7 @@ public class LinkedList * Inserts the specified element at the front of this list. * * @param e the element to insert - * @return true (as per the spec for {@link Deque#offerFirst}) + * @return true (as specified by {@link Deque#offerFirst}) * @since 1.6 */ public boolean offerFirst(E e) {