aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorGary Gregory <gardgregory@gmail.com>2022-07-28 17:22:48 -0400
committerGary Gregory <gardgregory@gmail.com>2022-07-28 17:22:48 -0400
commitc3c7e80ddcc40cfb380f8531aee4448b53a30f2a (patch)
tree8eb5bd66a11e699dc9ed1b169c53d2404d3c9b36 /src/main
parent16acf1695f1258dd069dc63bafd35743179010b3 (diff)
downloadapache-commons-io-c3c7e80ddcc40cfb380f8531aee4448b53a30f2a.tar.gz
Javadoc
Diffstat (limited to 'src/main')
-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