Repository: commons-collections
Updated Branches:
  refs/heads/master b5585aaa6 -> d8fd53176


Javadoc nits.

Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/commons-collections/commit/d8fd5317
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/d8fd5317
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/d8fd5317

Branch: refs/heads/master
Commit: d8fd53176635bf531184bbb16701d779e096b490
Parents: b5585aa
Author: Gary Gregory <garydgreg...@gmail.com>
Authored: Thu Nov 1 14:10:30 2018 -0600
Committer: Gary Gregory <garydgreg...@gmail.com>
Committed: Thu Nov 1 14:10:30 2018 -0600

----------------------------------------------------------------------
 .../java/org/apache/commons/collections4/BoundedCollection.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/d8fd5317/src/main/java/org/apache/commons/collections4/BoundedCollection.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/collections4/BoundedCollection.java 
b/src/main/java/org/apache/commons/collections4/BoundedCollection.java
index 2431cd5..9b534e5 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<E> extends Collection<E> 
{
     /**
      * Returns true if this collection is full and no new elements can be 
added.
      *
-     * @return <code>true</code> if the collection is full
+     * @return <code>true</code> 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();
 

Reply via email to