From 598e8bd51e1e900d58b9ce21f2c806da447888fb Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Wed, 10 Jun 2020 09:07:59 -0400 Subject: [PATCH] Javadoc. --- src/main/java/org/apache/commons/lang3/Functions.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/Functions.java b/src/main/java/org/apache/commons/lang3/Functions.java index 4f580b792..2029b2e11 100644 --- a/src/main/java/org/apache/commons/lang3/Functions.java +++ b/src/main/java/org/apache/commons/lang3/Functions.java @@ -103,7 +103,7 @@ public class Functions { @FunctionalInterface public interface FailableFunction { /** - * Apply the function. + * Applies this function. * @param input the input for the function * @return the result of the function * @throws T if the function fails @@ -114,7 +114,7 @@ public class Functions { @FunctionalInterface public interface FailableBiFunction { /** - * Apply the function. + * Applies this function. * @param input1 the first input for the function * @param input2 the second input for the function * @return the result of the function