aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/org/apache/commons/io/function/IOBiFunction.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/apache/commons/io/function/IOBiFunction.java b/src/main/java/org/apache/commons/io/function/IOBiFunction.java
index 23e9b8b8..07cd6134 100644
--- a/src/main/java/org/apache/commons/io/function/IOBiFunction.java
+++ b/src/main/java/org/apache/commons/io/function/IOBiFunction.java
@@ -24,12 +24,12 @@ import java.util.function.BiFunction;
import java.util.function.Function;
/**
- * Represents a function that accepts two arguments and produces a result. This is the two-arity specialization of
- * {@link IOFunction}.
+ * Like {@link BiFunction} but throws {@link IOException}.
*
* <p>
* This is a <a href="package-summary.html">functional interface</a> whose functional method is
* {@link #apply(Object, Object)}.
+ * </p>
*
* @param <T> the type of the first argument to the function
* @param <U> the type of the second argument to the function