Fix the comment of Failable, redundant "-" (#1056)

This commit is contained in:
徐梦旗 2023-04-17 20:20:11 +08:00 committed by GitHub
parent 2d82a504ab
commit 4623bf1827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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) {