You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2023/04/17 12:20:18 UTC

[commons-lang] branch master updated: Fix the comment of Failable, redundant "-" (#1056)

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

aherbert 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 4623bf182 Fix the comment of Failable, redundant "-" (#1056)
4623bf182 is described below

commit 4623bf18270c9e5e9e8996070a4cc54d81e07d9d
Author: 徐梦旗 <26...@qq.com>
AuthorDate: Mon Apr 17 20:20:11 2023 +0800

    Fix the comment of Failable, redundant "-" (#1056)
---
 src/main/java/org/apache/commons/lang3/function/Failable.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/lang3/function/Failable.java b/src/main/java/org/apache/commons/lang3/function/Failable.java
index efe3f707a..1d1e8f147 100644
--- a/src/main/java/org/apache/commons/lang3/function/Failable.java
+++ b/src/main/java/org/apache/commons/lang3/function/Failable.java
@@ -42,7 +42,7 @@ import org.apache.commons.lang3.stream.Streams.FailableStream;
  * constructs like:
  *
  * <pre>
- * Consumer&lt;java.lang.reflect.Method-&gt; consumer = m -&gt; {
+ * Consumer&lt;java.lang.reflect.Method&gt; consumer = m -&gt; {
  *     try {
  *         m.invoke(o, args);
  *     } catch (Throwable t) {