--- jsr166/src/jsr166y/RecursiveAction.java 2009/07/22 01:36:51 1.6 +++ jsr166/src/jsr166y/RecursiveAction.java 2009/07/27 03:33:28 1.7 @@ -34,10 +34,10 @@ package jsr166y; * } * }} * - * You could then sort anArray by creating {@code new SortTask(anArray, 0, - * anArray.length-1) } and invoking it in a ForkJoinPool. - * As a more concrete simple example, the following task increments - * each element of an array: + * You could then sort {@code anArray} by creating {@code new + * SortTask(anArray, 0, anArray.length-1) } and invoking it in a + * ForkJoinPool. As a more concrete simple example, the following + * task increments each element of an array: *
 {@code
  * class IncrementTask extends RecursiveAction {
  *   final long[] array; final int lo; final int hi;