--- jsr166/src/jsr166x/ConcurrentSkipListMap.java 2012/02/21 01:54:59 1.18 +++ jsr166/src/jsr166x/ConcurrentSkipListMap.java 2012/11/25 21:06:56 1.19 @@ -2094,9 +2094,9 @@ public class ConcurrentSkipListMap * This is equivalent to *
      *   if (!map.containsKey(key))
-     *      return map.put(key, value);
+     *     return map.put(key, value);
      *   else
-     *      return map.get(key);
+     *     return map.get(key);
      * 
* except that the action is performed atomically. * @param key key with which the specified value is to be associated.