--- jsr166/src/main/java/util/Queue.java 2005/04/29 02:00:39 1.25 +++ jsr166/src/main/java/util/Queue.java 2005/05/02 04:19:58 1.26 @@ -137,7 +137,7 @@ public interface Queue extends Collec /** * Retrieves and removes the head of this queue. This method - * differs from the poll method in that it throws an + * differs from the {@link #poll} method only in that it throws an * exception if this queue is empty. * * @return the head of this queue. @@ -156,7 +156,7 @@ public interface Queue extends Collec /** * Retrieves, but does not remove, the head of this queue. This method - * differs from the peek method only in that it throws an + * differs from the {@link #peek} method only in that it throws an * exception if this queue is empty. * * @return the head of this queue.