--- old/src/share/classes/java/util/LinkedList.java 2010-07-21 18:58:12.000000000 -0700 +++ new/src/share/classes/java/util/LinkedList.java 2010-07-21 18:58:12.000000000 -0700 @@ -26,14 +26,15 @@ package java.util; /** - * Linked list implementation of the {@code List} interface. Implements all - * optional list operations, and permits all elements (including - * {@code null}). In addition to implementing the {@code List} interface, - * the {@code LinkedList} class provides uniformly named methods to - * {@code get}, {@code remove} and {@code insert} an element at the - * beginning and end of the list. These operations allow linked lists to be - * used as a stack, {@linkplain Queue queue}, or {@linkplain Deque - * double-ended queue}. + * Linked list implementation of the {@code List} interface. + * Implements all optional list operations, and permits all elements + * (including {@code null}). In addition to implementing the {@code + * List} interface, the {@code LinkedList} class provides uniformly + * named methods to {@code get}, {@code remove} and {@code add} an + * element at the beginning (operation{@code First}) and end + * (operation{@code Last}) of the list. These operations allow + * linked lists to be used as a stack, {@linkplain Queue queue}, or + * {@linkplain Deque double-ended queue}. * *

The class implements the {@code Deque} interface, providing * first-in-first-out queue operations for {@code add},