You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/06/10 13:08:06 UTC

[commons-lang] branch master updated: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 598e8bd  Javadoc.
598e8bd is described below

commit 598e8bd51e1e900d58b9ce21f2c806da447888fb
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jun 10 09:07:59 2020 -0400

    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 4f580b7..2029b2e 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<I, O, T extends Throwable> {
         /**
-         * 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<I1, I2, O, T extends Throwable> {
         /**
-         * 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