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-io.git
The following commit(s) were added to refs/heads/master by this push: new 1ed363e Fix typo. 1ed363e is described below commit 1ed363e2f8d30dcfa46ad212362ac7e30a2bb4e2 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sat Nov 6 07:55:09 2021 -0400 Fix typo. --- src/main/java/org/apache/commons/io/function/IOConsumer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/function/IOConsumer.java b/src/main/java/org/apache/commons/io/function/IOConsumer.java index 37031da..d2da2b1 100644 --- a/src/main/java/org/apache/commons/io/function/IOConsumer.java +++ b/src/main/java/org/apache/commons/io/function/IOConsumer.java @@ -56,7 +56,7 @@ public interface IOConsumer<T> { void accept(T t) throws IOException; /** - * Returns a composed {@code IoConsumer} that performs, in sequence, this operation followed by the {@code after} + * Returns a composed {@code IOConsumer} that performs, in sequence, this operation followed by the {@code after} * operation. If performing either operation throws an exception, it is relayed to the caller of the composed * operation. If performing this operation throws an exception, the {@code after} operation will not be performed. *