--- jsr166/src/extra166y/ParallelArrayWithFilter.java 2012/12/30 02:05:53 1.5 +++ jsr166/src/extra166y/ParallelArrayWithFilter.java 2013/01/16 00:51:11 1.6 @@ -87,7 +87,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 +103,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 +119,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 */