diff --git a/src/main/java/org/apache/commons/collections4/BoundedCollection.java b/src/main/java/org/apache/commons/collections4/BoundedCollection.java index 2431cd535..9b534e53e 100644 --- a/src/main/java/org/apache/commons/collections4/BoundedCollection.java +++ b/src/main/java/org/apache/commons/collections4/BoundedCollection.java @@ -36,14 +36,14 @@ public interface BoundedCollection extends Collection { /** * Returns true if this collection is full and no new elements can be added. * - * @return true if the collection is full + * @return true if the collection is full. */ boolean isFull(); /** * Gets the maximum size of the collection (the bound). * - * @return the maximum number of elements the collection can hold + * @return the maximum number of elements the collection can hold. */ int maxSize();