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

elharo pushed a commit to branch elharo-patch-1
in repository https://gitbox.apache.org/repos/asf/maven-executor.git

commit f68d8317bb6cc4e370f266e55d20940ddb6b9bf0
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Sat Jun 13 12:27:15 2026 +0000

    Fix typos in Executor interface documentation
---
 maven-executor/src/main/java/org/apache/maven/executor/Executor.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/maven-executor/src/main/java/org/apache/maven/executor/Executor.java 
b/maven-executor/src/main/java/org/apache/maven/executor/Executor.java
index 5cc9b8d..e80d2f5 100644
--- a/maven-executor/src/main/java/org/apache/maven/executor/Executor.java
+++ b/maven-executor/src/main/java/org/apache/maven/executor/Executor.java
@@ -21,7 +21,7 @@ package org.apache.maven.executor;
 /**
  * Defines the contract for a component responsible for executing a Maven tool
  * using the information provided in an {@link ExecutorRequest}. This 
interface is central
- * to the execution of Maven commands and builds, but it does not construct 
nor fully parses arguments.
+ * to the execution of Maven commands and builds, but it does not construct 
nor fully parse arguments.
  */
 public interface Executor extends AutoCloseable {
     // Logic borrowed from Commons-Lang3
@@ -54,7 +54,7 @@ public interface Executor extends AutoCloseable {
     String mavenVersion() throws ExecutorException;
 
     /**
-     * Closes and disposes of this {@link Executor} instance, releasing any 
resources it may hold.
+     * Closes and disposes of this {@link Executor} instance, releasing any 
resources it holds.
      * This method is called automatically when using try-with-resources 
statements.
      *
      * <p>The default implementation does nothing. Subclasses should override 
this method

Reply via email to