This commit is contained in:
Gary Gregory 2024-04-25 08:38:35 -04:00
parent faa8037677
commit 0e1314c6b8
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ public final class LangCollectors {
*
* <pre>
* Stream.of(Long.valueOf(1), null, Long.valueOf(3))
* .collect(LangCollectors.joining("-", "[", "]", o -> Objects.toString(o, "NUL")))
* .collect(LangCollectors.joining("-", "[", "]", o -&gt; Objects.toString(o, "NUL")))
* returns "[1-NUL-3]"
* </pre>
*