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 3cccfe6 Nicer Javadoc. 3cccfe6 is described below commit 3cccfe604fa10f065d0ebb9c8fc3a2c1d21d6f45 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Wed Sep 15 09:56:33 2021 -0400 Nicer Javadoc. --- src/main/java/org/apache/commons/io/file/Counters.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/file/Counters.java b/src/main/java/org/apache/commons/io/file/Counters.java index d410337..eadb6aa 100644 --- a/src/main/java/org/apache/commons/io/file/Counters.java +++ b/src/main/java/org/apache/commons/io/file/Counters.java @@ -105,7 +105,7 @@ public class Counters { } /** - * Counts using a BigInteger number. + * Counts using a {@link BigInteger} number. */ private static final class BigIntegerCounter implements Counter { @@ -227,7 +227,7 @@ public class Counters { } /** - * Counts using a long number. + * Counts using a {@code long} number. */ private final static class LongCounter implements Counter {