--- jsr166/src/jsr166e/CompletableFuture.java 2013/01/18 04:23:27 1.7 +++ jsr166/src/jsr166e/CompletableFuture.java 2013/02/06 07:07:48 1.10 @@ -2449,10 +2449,10 @@ public class CompletableFuture implem * then the returned CompletableFuture also does so, with a * CompletionException holding this exception as its cause. * - * @param fn the function returning a new CompletableFuture. + * @param fn the function returning a new CompletableFuture * @return the CompletableFuture, that {@code isDone()} upon * return if completed by the given function, or an exception - * occurs. + * occurs */ public CompletableFuture thenCompose(Fun> fn) { @@ -2640,10 +2640,10 @@ public class CompletableFuture implem /** * Forcibly sets or resets the value subsequently returned by - * method get() and related methods, whether or not already - * completed. This method is designed for use only in error - * recovery actions, and even in such situations may result in - * ongoing dependent completions using established versus + * method {@link #get()} and related methods, whether or not + * already completed. This method is designed for use only in + * error recovery actions, and even in such situations may result + * in ongoing dependent completions using established versus * overwritten outcomes. * * @param value the completion value @@ -2654,9 +2654,9 @@ public class CompletableFuture implem } /** - * Forcibly causes subsequent invocations of method get() and - * related methods to throw the given exception, whether or not - * already completed. This method is designed for use only in + * Forcibly causes subsequent invocations of method {@link #get()} + * and related methods to throw the given exception, whether or + * not already completed. This method is designed for use only in * recovery actions, and even in such situations may result in * ongoing dependent completions using established versus * overwritten outcomes.