diff --git a/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java b/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java index 9a6147241..eaed72d4f 100644 --- a/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/BooleanConsumer.java @@ -42,7 +42,7 @@ public interface BooleanConsumer { } /** - * Performs this operation on the given argument. + * Accepts the given arguments. * * @param value the input argument */ diff --git a/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java index 823a6496d..dbe02806f 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableBiConsumer.java @@ -48,7 +48,7 @@ public interface FailableBiConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param t the first parameter for the consumable to accept * @param u the second parameter for the consumable to accept diff --git a/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java index 9565a8f15..30595b4bb 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableConsumer.java @@ -51,7 +51,7 @@ public interface FailableConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param object the parameter for the consumable to accept * @throws E Thrown when the consumer fails. diff --git a/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java index 88229ff60..fda3972af 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableDoubleConsumer.java @@ -44,7 +44,7 @@ public interface FailableDoubleConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param value the parameter for the consumable to accept * @throws E Thrown when the consumer fails. diff --git a/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java index a9330e1f2..98df32449 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableIntConsumer.java @@ -44,7 +44,7 @@ public interface FailableIntConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param value the parameter for the consumable to accept * @throws E Thrown when the consumer fails. diff --git a/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java index 946b4acf1..3bd4e46a9 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableLongConsumer.java @@ -44,7 +44,7 @@ public interface FailableLongConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param object the parameter for the consumable to accept * @throws E Thrown when the consumer fails. diff --git a/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java index 1c986b91f..725e9f365 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableObjDoubleConsumer.java @@ -45,7 +45,7 @@ public interface FailableObjDoubleConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param object the object parameter for the consumable to accept. * @param value the double parameter for the consumable to accept. diff --git a/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java index aa8c02cc1..48055de02 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableObjIntConsumer.java @@ -45,7 +45,7 @@ public interface FailableObjIntConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param object the object parameter for the consumable to accept. * @param value the int parameter for the consumable to accept. diff --git a/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java b/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java index b6e5a3552..e75bede46 100644 --- a/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java +++ b/src/main/java/org/apache/commons/lang3/function/FailableObjLongConsumer.java @@ -45,7 +45,7 @@ public interface FailableObjLongConsumer { } /** - * Accepts the consumer. + * Accepts the given arguments. * * @param object the object parameter for the consumable to accept. * @param value the long parameter for the consumable to accept.