@@ -265,9 +265,9 @@ default OpBuilder.Arity2 binary(final String opName) {
265265 * @return A {@link org.scijava.ops.api.OpBuilder.Arity3} instance for builder chaining.
266266 * @throws org.scijava.ops.api.features.OpMatchingException if the Op request cannot be satisfied
267267 * @see <a href="#op-java.lang.String-" title="For a Builder instance without the arity choice made">op(String)</a>
268- * @see <a href="#trinary -java.lang.String-org.scijava.ops.api.Hints-" title="To specify a Hints instance to use">trinary (String, Hints)</a>
268+ * @see <a href="#ternary -java.lang.String-org.scijava.ops.api.Hints-" title="To specify a Hints instance to use">ternary (String, Hints)</a>
269269 */
270- default OpBuilder .Arity3 trinary (final String opName ) {
270+ default OpBuilder .Arity3 ternary (final String opName ) {
271271 return new OpBuilder (this , opName ).arity3 ();
272272 }
273273
@@ -483,16 +483,16 @@ default OpBuilder.Arity2 binary(final String opName, final Hints hints) {
483483 }
484484
485485 /**
486- * As {@link #trinary (String)} but using a provided {@link Hints}.
486+ * As {@link #ternary (String)} but using a provided {@link Hints}.
487487 *
488488 * @param opName The name of the Op to run
489489 * @param hints The {@code Hints} instance to use for Op matching
490490 * @return A {@link org.scijava.ops.api.OpBuilder.Arity3} instance for builder chaining.
491491 * @throws org.scijava.ops.api.features.OpMatchingException if the Op request cannot be satisfied
492492 * @see <a href="#op-java.lang.String-org.scijava.ops.api.Hints-" title="For a Builder instance without the arity choice made">op(String, Hints)</a>
493- * @see <a href="#trinary -java.lang.String-" title="To use the default Hints for this OpEnvironment">trinary (String)</a>
493+ * @see <a href="#ternary -java.lang.String-" title="To use the default Hints for this OpEnvironment">ternary (String)</a>
494494 */
495- default OpBuilder .Arity3 trinary (final String opName , final Hints hints ) {
495+ default OpBuilder .Arity3 ternary (final String opName , final Hints hints ) {
496496 return new OpBuilder (this , opName , hints ).arity3 ();
497497 }
498498
0 commit comments