This is an automated email from the ASF dual-hosted git repository.

garydgregory 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 eb1dc297e [Javadoc] Fix grammar in ArrayStack class Javadoc (#725)
eb1dc297e is described below

commit eb1dc297e44ead50910c384b25ad6a31dafba7c0
Author: thomaslantern <[email protected]>
AuthorDate: Sat Aug 15 07:20:14 2026 -0400

    [Javadoc] Fix grammar in ArrayStack class Javadoc (#725)
    
    * Update ArrayStack.java
    
    corrected typo
    
    * fixed extra space
---
 src/main/java/org/apache/commons/collections4/ArrayStack.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/collections4/ArrayStack.java 
b/src/main/java/org/apache/commons/collections4/ArrayStack.java
index ac6a12309..5707c069f 100644
--- a/src/main/java/org/apache/commons/collections4/ArrayStack.java
+++ b/src/main/java/org/apache/commons/collections4/ArrayStack.java
@@ -25,8 +25,8 @@ import java.util.Stack;
  * An implementation of the {@link Stack} API that is based on an
  * {@code ArrayList} instead of a {@code Vector}, so it is not
  * synchronized to protect against multithreaded access.  The implementation
- * is therefore operates faster in environments where you do not need to
- * worry about multiple thread contention.
+ * therefore operates faster in environments where you do not need to worry
+ * about multiple thread contention.
  * <p>
  * The removal order of an {@code ArrayStack} is based on insertion
  * order: The most recently added element is removed first.  The iteration

Reply via email to