--- jsr166/src/jsr166e/CompletableFuture.java 2013/01/03 07:01:49 1.4 +++ jsr166/src/jsr166e/CompletableFuture.java 2013/01/03 19:34:31 1.5 @@ -83,9 +83,9 @@ public class CompletableFuture implem /* * Overview: * - * 1. Non-nullness of field result (set via CAS) indicates - * done. An AltResult is used to box null as a result, as well as - * to hold exceptions. Using a single field makes completion fast + * 1. Non-nullness of field result (set via CAS) indicates done. + * An AltResult is used to box null as a result, as well as to + * hold exceptions. Using a single field makes completion fast * and simple to detect and trigger, at the expense of a lot of * encoding and decoding that infiltrates many methods. One minor * simplification relies on the (static) NIL (to box null results)