--- jsr166/src/jsr166x/ConcurrentNavigableMap.java 2004/09/06 17:01:54 1.1 +++ jsr166/src/jsr166x/ConcurrentNavigableMap.java 2011/03/15 19:47:02 1.3 @@ -1,7 +1,7 @@ /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at - * http://creativecommons.org/licenses/publicdomain + * http://creativecommons.org/publicdomain/zero/1.0/ */ package jsr166x; @@ -14,7 +14,7 @@ import java.util.concurrent.*; * * @author Doug Lea * @param the type of keys maintained by this map - * @param the type of mapped values + * @param the type of mapped values */ public interface ConcurrentNavigableMap extends ConcurrentMap, NavigableMap { /** @@ -46,7 +46,7 @@ public interface ConcurrentNavigableMap< * Returns a view of the portion of this map whose keys are strictly less * than toKey. The returned sorted map is backed by this map, so * changes in the returned sorted map are reflected in this map, and - * vice-versa. + * vice-versa. * @param toKey high endpoint (exclusive) of the headMap. * @return a view of the portion of this map whose keys are strictly * less than toKey.