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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git


The following commit(s) were added to refs/heads/master by this push:
     new dc0db21  Fix typos in Javadoc and comments
dc0db21 is described below

commit dc0db219695d8846b7fbb7e4dd7b221f20ab6243
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Feb 15 09:30:08 2025 -0500

    Fix typos in Javadoc and comments
---
 src/main/java/org/apache/commons/daemon/DaemonInitException.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/daemon/DaemonInitException.java 
b/src/main/java/org/apache/commons/daemon/DaemonInitException.java
index 17dcdcc..5449fdf 100644
--- a/src/main/java/org/apache/commons/daemon/DaemonInitException.java
+++ b/src/main/java/org/apache/commons/daemon/DaemonInitException.java
@@ -26,7 +26,7 @@ public class DaemonInitException extends Exception {
     /**
      * Constructs a new exception with the given message.
      *
-     * @param message the detail message accessible with {@link #getMessage()} 
.
+     * @param message the detail message accessible with {@link #getMessage()}.
      */
     public DaemonInitException(final String message) {
         super(message);
@@ -35,7 +35,7 @@ public class DaemonInitException extends Exception {
     /**
      * Constructs a new exception with the given detail and cause.
      *
-     * @param message the detail message accessible with {@link #getMessage()} 
.
+     * @param message the detail message accessible with {@link #getMessage()}.
      * @param cause the cause accessible with {@link #getCause()}.
      */
     public DaemonInitException(final String message, final Throwable cause) {

Reply via email to