--- jsr166/src/extra166y/ParallelArrayWithFilter.java 2012/12/30 02:05:53 1.5 +++ jsr166/src/extra166y/ParallelArrayWithFilter.java 2015/01/18 20:17:32 1.7 @@ -5,6 +5,7 @@ */ package extra166y; + import jsr166y.*; import static extra166y.Ops.*; import java.util.*; @@ -87,7 +88,7 @@ public abstract class ParallelArrayWithF /** * Replaces elements with results of applying - * op(thisElement, otherElement). + * {@code op(thisElement, otherElement)}. * @param other the other array * @param combiner the combiner * @return this (to simplify use in expressions) @@ -103,7 +104,7 @@ public abstract class ParallelArrayWithF /** * Replaces elements with results of applying - * op(thisElement, otherElement). + * {@code op(thisElement, otherElement)}. * @param other the other array * @param combiner the combiner * @return this (to simplify use in expressions) @@ -119,7 +120,7 @@ public abstract class ParallelArrayWithF /** * Returns a new ParallelArray containing only non-null unique * elements (that is, without any duplicates). This method - * uses each element's equals method to test for + * uses each element's {@code equals} method to test for * duplication. * @return the new ParallelArray */