From d8fd53176635bf531184bbb16701d779e096b490 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 1 Nov 2018 14:10:30 -0600 Subject: [PATCH] Javadoc nits. --- .../org/apache/commons/collections4/BoundedCollection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();