--- jsr166/src/jsr166y/CountedCompleter.java 2012/11/26 12:08:49 1.26 +++ jsr166/src/jsr166y/CountedCompleter.java 2012/12/15 21:26:06 1.28 @@ -83,7 +83,7 @@ package jsr166y; * subdivided) to each element of an array or collection; especially * when the operation takes a significantly different amount of time * to complete for some elements than others, either because of - * intrinsic variation (for example IO) or auxiliary effects such as + * intrinsic variation (for example I/O) or auxiliary effects such as * garbage collection. Because CountedCompleters provide their own * continuations, other threads need not block waiting to perform * them. @@ -224,7 +224,7 @@ package jsr166y; * public static E search(E[] array) { * return new Searcher(null, array, new AtomicReference(), 0, array.length).invoke(); * } - *}} + * }} * * In this example, as well as others in which tasks have no other * effects except to compareAndSet a common result, the trailing