Skip to content

Commit

Permalink
Fix Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 10, 2024
1 parent 44b355f commit ec7904b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,14 @@
* <p>
* For example:
* </p>
*
* <pre>
* <code>
* try (ReversedLinesFileReader reader = ReversedLinesFileReader.builder()
* .setPath(path)
* .setBufferSize(4096)
* .setCharset(StandardCharsets.UTF_8)
* .get()) {
* reader.forEach(line -> System.out.println(line));
* reader.forEach(line -&gt; System.out.println(line));
* }
* </code>
* </pre>
Expand Down

0 comments on commit ec7904b

Please sign in to comment.