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-collections.git
The following commit(s) were added to refs/heads/master by this push: new de9523a9e Spelling de9523a9e is described below commit de9523a9e39d538f553d865f80437c77c22a7053 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Nov 20 19:20:56 2023 -0500 Spelling --- .../java/org/apache/commons/collections4/bag/AbstractMapBag.java | 2 +- .../java/org/apache/commons/collections4/bag/CollectionBag.java | 2 +- src/main/java/org/apache/commons/collections4/bag/HashBag.java | 2 +- src/main/java/org/apache/commons/collections4/bag/TreeBag.java | 2 +- .../org/apache/commons/collections4/bloomfilter/BloomFilter.java | 6 +++--- .../apache/commons/collections4/iterators/ArrayListIterator.java | 2 +- .../commons/collections4/iterators/ObjectArrayListIterator.java | 2 +- .../apache/commons/collections4/multiset/AbstractMapMultiSet.java | 2 +- .../apache/commons/collections4/queue/AbstractQueueDecorator.java | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java b/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java index d49e06283..87467df91 100644 --- a/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java +++ b/src/main/java/org/apache/commons/collections4/bag/AbstractMapBag.java @@ -468,7 +468,7 @@ public abstract class AbstractMapBag<E> implements Bag<E> { int i = 0; for (final E current : map.keySet()) { for (int index = getCount(current); index > 0; index--) { - // unsafe, will throw ArrayStoreException if types are not compatible, see javadoc + // unsafe, will throw ArrayStoreException if types are not compatible, see Javadoc @SuppressWarnings("unchecked") final T unchecked = (T) current; array[i++] = unchecked; diff --git a/src/main/java/org/apache/commons/collections4/bag/CollectionBag.java b/src/main/java/org/apache/commons/collections4/bag/CollectionBag.java index 560cc134f..91eff4901 100644 --- a/src/main/java/org/apache/commons/collections4/bag/CollectionBag.java +++ b/src/main/java/org/apache/commons/collections4/bag/CollectionBag.java @@ -32,7 +32,7 @@ import org.apache.commons.collections4.Bag; * are fully compliant with the Collection contract. * </p> * <p> - * The method javadoc highlights the differences compared to the original Bag interface. + * The method Javadoc highlights the differences compared to the original Bag interface. * </p> * * @see Bag diff --git a/src/main/java/org/apache/commons/collections4/bag/HashBag.java b/src/main/java/org/apache/commons/collections4/bag/HashBag.java index 18d91546a..d54ebfcd0 100644 --- a/src/main/java/org/apache/commons/collections4/bag/HashBag.java +++ b/src/main/java/org/apache/commons/collections4/bag/HashBag.java @@ -30,7 +30,7 @@ import java.util.HashMap; * A {@code Bag} stores each object in the collection together with a * count of occurrences. Extra methods on the interface allow multiple copies * of an object to be added or removed at once. It is important to read the - * interface javadoc carefully as several methods violate the + * interface Javadoc carefully as several methods violate the * {@link Collection} interface specification. * </p> * diff --git a/src/main/java/org/apache/commons/collections4/bag/TreeBag.java b/src/main/java/org/apache/commons/collections4/bag/TreeBag.java index a0256f22e..421b49d3a 100644 --- a/src/main/java/org/apache/commons/collections4/bag/TreeBag.java +++ b/src/main/java/org/apache/commons/collections4/bag/TreeBag.java @@ -38,7 +38,7 @@ import org.apache.commons.collections4.SortedBag; * A {@link org.apache.commons.collections4.Bag Bag} stores each object in the collection * together with a count of occurrences. Extra methods on the interface allow multiple * copies of an object to be added or removed at once. It is important to read the interface - * javadoc carefully as several methods violate the {@link Collection} interface specification. + * Javadoc carefully as several methods violate the {@link Collection} interface specification. * </p> * * @param <E> the type of elements in this bag diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java b/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java index fbfbb91c4..1f3c7ab6f 100644 --- a/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java +++ b/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java @@ -216,7 +216,7 @@ public interface BloomFilter extends IndexProducer, BitMapProducer { * shape and cardinality of this filter.</p> * * <p>This produces an estimate roughly equivalent to the number of Hashers that have been merged into the filter - * by rounding the value from the calculation described in the {@link Shape} class javadoc.</p> + * by rounding the value from the calculation described in the {@link Shape} class Javadoc.</p> * * <p><em>Note:</em></p> * <ul> @@ -246,7 +246,7 @@ public interface BloomFilter extends IndexProducer, BitMapProducer { * Estimates the number of items in the union of this Bloom filter with the other bloom filter. * * <p>This produces an estimate roughly equivalent to the number of unique Hashers that have been merged into either - * of the filters by rounding the value from the calculation described in the {@link Shape} class javadoc.</p> + * of the filters by rounding the value from the calculation described in the {@link Shape} class Javadoc.</p> * * <p><em>{@code estimateUnion} should only be called with Bloom filters of the same Shape. If called on Bloom * filters of differing shape this method is not symmetric. If {@code other} has more bits an {@code IllegalArgumentException} @@ -269,7 +269,7 @@ public interface BloomFilter extends IndexProducer, BitMapProducer { * Estimates the number of items in the intersection of this Bloom filter with the other bloom filter. * * <p>This method produces estimate is roughly equivalent to the number of unique Hashers that have been merged into both - * of the filters by rounding the value from the calculation described in the {@link Shape} class javadoc.</p> + * of the filters by rounding the value from the calculation described in the {@link Shape} class Javadoc.</p> * * <p><em>{@code estimateIntersection} should only be called with Bloom filters of the same Shape. If called on Bloom * filters of differing shape this method is not symmetric. If {@code other} has more bits an {@code IllegalArgumentException} diff --git a/src/main/java/org/apache/commons/collections4/iterators/ArrayListIterator.java b/src/main/java/org/apache/commons/collections4/iterators/ArrayListIterator.java index fb4d4609b..66a50ed3a 100644 --- a/src/main/java/org/apache/commons/collections4/iterators/ArrayListIterator.java +++ b/src/main/java/org/apache/commons/collections4/iterators/ArrayListIterator.java @@ -177,7 +177,7 @@ public class ArrayListIterator<E> extends ArrayIterator<E> * <b>Note:</b> {@link java.util.ListIterator} implementations that support * {@code add()} and {@code remove()} only allow {@code set()} to be called * once per call to {@code next()} or {@code previous} (see the {@link java.util.ListIterator} - * javadoc for more details). Since this implementation does + * Javadoc for more details). Since this implementation does * not support {@code add()} or {@code remove()}, {@code set()} may be * called as often as desired. * diff --git a/src/main/java/org/apache/commons/collections4/iterators/ObjectArrayListIterator.java b/src/main/java/org/apache/commons/collections4/iterators/ObjectArrayListIterator.java index 11ed74639..3eb99dc3e 100644 --- a/src/main/java/org/apache/commons/collections4/iterators/ObjectArrayListIterator.java +++ b/src/main/java/org/apache/commons/collections4/iterators/ObjectArrayListIterator.java @@ -167,7 +167,7 @@ public class ObjectArrayListIterator<E> extends ObjectArrayIterator<E> * <b>Note:</b> {@link java.util.ListIterator} implementations that support {@code add()} * and {@code remove()} only allow {@code set()} to be called once per call * to {@code next()} or {@code previous} (see the {@link java.util.ListIterator} - * javadoc for more details). Since this implementation does not support + * Javadoc for more details). Since this implementation does not support * {@code add()} or {@code remove()}, {@code set()} may be * called as often as desired. * diff --git a/src/main/java/org/apache/commons/collections4/multiset/AbstractMapMultiSet.java b/src/main/java/org/apache/commons/collections4/multiset/AbstractMapMultiSet.java index 05b1ddef0..f83255aae 100644 --- a/src/main/java/org/apache/commons/collections4/multiset/AbstractMapMultiSet.java +++ b/src/main/java/org/apache/commons/collections4/multiset/AbstractMapMultiSet.java @@ -508,7 +508,7 @@ public abstract class AbstractMapMultiSet<E> extends AbstractMultiSet<E> { final E current = entry.getKey(); final MutableInteger count = entry.getValue(); for (int index = count.value; index > 0; index--) { - // unsafe, will throw ArrayStoreException if types are not compatible, see javadoc + // unsafe, will throw ArrayStoreException if types are not compatible, see Javadoc @SuppressWarnings("unchecked") final T unchecked = (T) current; array[i++] = unchecked; diff --git a/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java b/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java index 1d7068878..6ffebdaa8 100644 --- a/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java +++ b/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java @@ -30,7 +30,7 @@ import org.apache.commons.collections4.collection.AbstractCollectionDecorator; * to the backing object, but relies on Object's implementation. This is * necessary as some Queue implementations, e.g. LinkedList, have a custom * equals implementation for which symmetry can not be preserved. - * See class javadoc of AbstractCollectionDecorator for more information. + * See class Javadoc of AbstractCollectionDecorator for more information. * </p> * * @param <E> the type of the elements in the queue