This is an automated email from the ASF dual-hosted git repository.
elharo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/maven-executor.git
The following commit(s) were added to refs/heads/main by this push:
new 3d1bc06 Fix typos in Executor interface documentation (#17)
3d1bc06 is described below
commit 3d1bc06f7542966ff2726f0ad3218b316b789ede
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Tue Jun 30 11:03:24 2026 +0000
Fix typos in Executor interface documentation (#17)
---
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