--- jsr166/src/main/java/util/NavigableMap.java 2006/04/20 20:34:37 1.15 +++ jsr166/src/main/java/util/NavigableMap.java 2006/04/21 06:45:18 1.18 @@ -208,7 +208,7 @@ public interface NavigableMap exten /** * Returns a {@link NavigableMap} view of the mappings contained in this * map in descending order. The descending map is backed by this map, so - * changes to the map are reflected in the descending set, and vice-versa. + * changes to the map are reflected in the descending map, and vice-versa. * If either map is modified while an iteration over a collection view of * the other map is in progress (except through the iterator's own * {@code remove} operation), the results of the iteration are undefined. @@ -226,7 +226,7 @@ public interface NavigableMap exten * {@code remove} operation), the results of the iteration are undefined. * The set supports element removal, which removes the corresponding * mapping from the map, via the {@code Iterator.remove}, - * {@code Set.remove}, {@code removeAll} {@code retainAll}, and + * {@code Set.remove}, {@code removeAll}, {@code retainAll}, and * {@code clear} operations. It does not support the {@code add} or * {@code addAll} operations. * @@ -268,10 +268,10 @@ public interface NavigableMap exten * * @param fromKey low endpoint of the keys in the returned map * @param fromInclusive true if the low endpoint ({@code fromKey}) is - * to be included in the the returned view + * to be included in the returned view * @param toKey high endpoint of the keys in the returned map * @param toInclusive true if the high endpoint ({@code toKey}) is - * to be included in the the returned view + * to be included in the returned view * @return a view of the portion of this map whose keys range from * {@code fromKey} to {@code toKey} * @throws ClassCastException if {@code fromKey} and {@code toKey} @@ -302,7 +302,7 @@ public interface NavigableMap exten * * @param toKey high endpoint of the keys in the returned map * @param inclusive true if the high endpoint ({@code toKey}) is - * to be included in the the returned view + * to be included in the returned view * @return a view of the portion of this map whose keys are less than * (or equal to, if {@code inclusive} is true) {@code toKey} * @throws ClassCastException if {@code toKey} is not compatible @@ -331,7 +331,7 @@ public interface NavigableMap exten * * @param fromKey low endpoint of the keys in the returned map * @param inclusive true if the low endpoint ({@code fromKey}) is - * to be included in the the returned view + * to be included in the returned view * @return a view of the portion of this map whose keys are greater than * (or equal to, if {@code inclusive} is true) {@code fromKey} * @throws ClassCastException if {@code fromKey} is not compatible